Dependency updates and java 1.7
authorindvdum (gotoindvdum[at]gmail[dot]com)
Sat, 26 Nov 2011 00:01:40 +0300
changeset 23b702c5443354
parent 22 e1fde099d5ff
child 24 ff78e975f211
Dependency updates and java 1.7
pom.xml
     1.1 --- a/pom.xml	Mon Oct 17 00:06:03 2011 +0300
     1.2 +++ b/pom.xml	Sat Nov 26 00:01:40 2011 +0300
     1.3 @@ -40,8 +40,8 @@
     1.4  				<groupId>org.apache.maven.plugins</groupId>
     1.5  				<artifactId>maven-compiler-plugin</artifactId>
     1.6  				<configuration>
     1.7 -					<source>1.6</source>
     1.8 -					<target>1.6</target>
     1.9 +					<source>1.7</source>
    1.10 +					<target>1.7</target>
    1.11  				</configuration>
    1.12  			</plugin>
    1.13  
    1.14 @@ -106,8 +106,7 @@
    1.15  						extraJvmArgs>-Xmx512M -Xss1024k -Xdebug
    1.16  						-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=8998</extraJvmArgs
    1.17  					-->
    1.18 -					<extraJvmArgs>-Xmx256M -Xss1024k</extraJvmArgs>
    1.19 -					<localWorkers>1</localWorkers>
    1.20 +					<extraJvmArgs>-Xmx512M -Xss1024k</extraJvmArgs>
    1.21  					<runTarget>xsite</runTarget>
    1.22  					<hostedWebapp>${project.build.directory}/${project.build.finalName}</hostedWebapp>
    1.23  					<noServer>true</noServer>
    1.24 @@ -196,6 +195,59 @@
    1.25  				</plugins>
    1.26  			</build>
    1.27  		</profile>
    1.28 +		<profile>
    1.29 +			<id>recompileWidgetsetLow</id>
    1.30 +			<build>
    1.31 +				<plugins>
    1.32 +					<plugin>
    1.33 +						<groupId>org.codehaus.mojo</groupId>
    1.34 +						<artifactId>gwt-maven-plugin</artifactId>
    1.35 +						<version>${gwt-maven-plugin.version}</version>
    1.36 +						<configuration>
    1.37 +							<!-- if you don't specify any modules, the plugin will find them -->
    1.38 +							<webappDirectory>${project.build.directory}/${project.build.finalName}/VAADIN/widgetsets</webappDirectory>
    1.39 +							<!-- On Mac running Snow Leopard, add "-d32" -->
    1.40 +							<!--
    1.41 +								This causes error messages (but build works) in phase "package":
    1.42 +								two processes would use the same debug port
    1.43 +							-->
    1.44 +							<!--
    1.45 +								extraJvmArgs>-Xmx512M -Xss1024k -Xdebug
    1.46 +								-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=8998</extraJvmArgs
    1.47 +							-->
    1.48 +							<extraJvmArgs>-Xmx256M -Xss1024k</extraJvmArgs>
    1.49 +							<localWorkers>1</localWorkers>
    1.50 +							<runTarget>xsite</runTarget>
    1.51 +							<hostedWebapp>${project.build.directory}/${project.build.finalName}</hostedWebapp>
    1.52 +							<noServer>true</noServer>
    1.53 +							<port>8080</port>
    1.54 +							<soyc>false</soyc>
    1.55 +						</configuration>
    1.56 +						<executions>
    1.57 +							<execution>
    1.58 +								<goals>
    1.59 +									<goal>resources</goal>
    1.60 +									<goal>compile</goal>
    1.61 +								</goals>
    1.62 +							</execution>
    1.63 +						</executions>
    1.64 +					</plugin>
    1.65 +				</plugins>
    1.66 +			</build>
    1.67 +
    1.68 +			<pluginRepositories>
    1.69 +				<pluginRepository>
    1.70 +					<id>codehaus-snapshots</id>
    1.71 +					<url>http://nexus.codehaus.org/snapshots</url>
    1.72 +					<snapshots>
    1.73 +						<enabled>true</enabled>
    1.74 +					</snapshots>
    1.75 +					<releases>
    1.76 +						<enabled>false</enabled>
    1.77 +					</releases>
    1.78 +				</pluginRepository>
    1.79 +			</pluginRepositories>
    1.80 +		</profile>
    1.81  	</profiles>
    1.82  
    1.83  	<dependencies>
    1.84 @@ -207,7 +259,7 @@
    1.85  		<dependency>
    1.86  			<groupId>org.vaadin.addons</groupId>
    1.87  			<artifactId>widget-rpc</artifactId>
    1.88 -			<version>1.1.3</version>
    1.89 +			<version>1.1.5</version>
    1.90  		</dependency>
    1.91  		<dependency>
    1.92  			<groupId>com.google.gwt</groupId>