pom.xml
changeset 23 b702c5443354
parent 22 e1fde099d5ff
child 24 ff78e975f211
equal deleted inserted replaced
22:e1fde099d5ff 23:b702c5443354
    38 			</plugin>
    38 			</plugin>
    39 			<plugin>
    39 			<plugin>
    40 				<groupId>org.apache.maven.plugins</groupId>
    40 				<groupId>org.apache.maven.plugins</groupId>
    41 				<artifactId>maven-compiler-plugin</artifactId>
    41 				<artifactId>maven-compiler-plugin</artifactId>
    42 				<configuration>
    42 				<configuration>
    43 					<source>1.6</source>
    43 					<source>1.7</source>
    44 					<target>1.6</target>
    44 					<target>1.7</target>
    45 				</configuration>
    45 				</configuration>
    46 			</plugin>
    46 			</plugin>
    47 
    47 
    48 			<plugin>
    48 			<plugin>
    49 				<groupId>org.apache.maven.plugins</groupId>
    49 				<groupId>org.apache.maven.plugins</groupId>
   104 					-->
   104 					-->
   105 					<!--
   105 					<!--
   106 						extraJvmArgs>-Xmx512M -Xss1024k -Xdebug
   106 						extraJvmArgs>-Xmx512M -Xss1024k -Xdebug
   107 						-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=8998</extraJvmArgs
   107 						-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=8998</extraJvmArgs
   108 					-->
   108 					-->
   109 					<extraJvmArgs>-Xmx256M -Xss1024k</extraJvmArgs>
   109 					<extraJvmArgs>-Xmx512M -Xss1024k</extraJvmArgs>
   110 					<localWorkers>1</localWorkers>
       
   111 					<runTarget>xsite</runTarget>
   110 					<runTarget>xsite</runTarget>
   112 					<hostedWebapp>${project.build.directory}/${project.build.finalName}</hostedWebapp>
   111 					<hostedWebapp>${project.build.directory}/${project.build.finalName}</hostedWebapp>
   113 					<noServer>true</noServer>
   112 					<noServer>true</noServer>
   114 					<port>8080</port>
   113 					<port>8080</port>
   115 					<soyc>false</soyc>
   114 					<soyc>false</soyc>
   194 						</executions>
   193 						</executions>
   195 					</plugin>
   194 					</plugin>
   196 				</plugins>
   195 				</plugins>
   197 			</build>
   196 			</build>
   198 		</profile>
   197 		</profile>
       
   198 		<profile>
       
   199 			<id>recompileWidgetsetLow</id>
       
   200 			<build>
       
   201 				<plugins>
       
   202 					<plugin>
       
   203 						<groupId>org.codehaus.mojo</groupId>
       
   204 						<artifactId>gwt-maven-plugin</artifactId>
       
   205 						<version>${gwt-maven-plugin.version}</version>
       
   206 						<configuration>
       
   207 							<!-- if you don't specify any modules, the plugin will find them -->
       
   208 							<webappDirectory>${project.build.directory}/${project.build.finalName}/VAADIN/widgetsets</webappDirectory>
       
   209 							<!-- On Mac running Snow Leopard, add "-d32" -->
       
   210 							<!--
       
   211 								This causes error messages (but build works) in phase "package":
       
   212 								two processes would use the same debug port
       
   213 							-->
       
   214 							<!--
       
   215 								extraJvmArgs>-Xmx512M -Xss1024k -Xdebug
       
   216 								-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=8998</extraJvmArgs
       
   217 							-->
       
   218 							<extraJvmArgs>-Xmx256M -Xss1024k</extraJvmArgs>
       
   219 							<localWorkers>1</localWorkers>
       
   220 							<runTarget>xsite</runTarget>
       
   221 							<hostedWebapp>${project.build.directory}/${project.build.finalName}</hostedWebapp>
       
   222 							<noServer>true</noServer>
       
   223 							<port>8080</port>
       
   224 							<soyc>false</soyc>
       
   225 						</configuration>
       
   226 						<executions>
       
   227 							<execution>
       
   228 								<goals>
       
   229 									<goal>resources</goal>
       
   230 									<goal>compile</goal>
       
   231 								</goals>
       
   232 							</execution>
       
   233 						</executions>
       
   234 					</plugin>
       
   235 				</plugins>
       
   236 			</build>
       
   237 
       
   238 			<pluginRepositories>
       
   239 				<pluginRepository>
       
   240 					<id>codehaus-snapshots</id>
       
   241 					<url>http://nexus.codehaus.org/snapshots</url>
       
   242 					<snapshots>
       
   243 						<enabled>true</enabled>
       
   244 					</snapshots>
       
   245 					<releases>
       
   246 						<enabled>false</enabled>
       
   247 					</releases>
       
   248 				</pluginRepository>
       
   249 			</pluginRepositories>
       
   250 		</profile>
   199 	</profiles>
   251 	</profiles>
   200 
   252 
   201 	<dependencies>
   253 	<dependencies>
   202 		<dependency>
   254 		<dependency>
   203 			<groupId>com.vaadin</groupId>
   255 			<groupId>com.vaadin</groupId>
   205 			<version>${vaadin.version}</version>
   257 			<version>${vaadin.version}</version>
   206 		</dependency>
   258 		</dependency>
   207 		<dependency>
   259 		<dependency>
   208 			<groupId>org.vaadin.addons</groupId>
   260 			<groupId>org.vaadin.addons</groupId>
   209 			<artifactId>widget-rpc</artifactId>
   261 			<artifactId>widget-rpc</artifactId>
   210 			<version>1.1.3</version>
   262 			<version>1.1.5</version>
   211 		</dependency>
   263 		</dependency>
   212 		<dependency>
   264 		<dependency>
   213 			<groupId>com.google.gwt</groupId>
   265 			<groupId>com.google.gwt</groupId>
   214 			<artifactId>gwt-user</artifactId>
   266 			<artifactId>gwt-user</artifactId>
   215 			<version>${gwt-user.version}</version>
   267 			<version>${gwt-user.version}</version>