diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2013-12-11 10:50:12 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2013-12-11 10:50:21 +0100 |
commit | 0b75ead802109cdcdfa67e0098308a6211f19e05 (patch) | |
tree | 58be458827e372f5974bceebaef120ad2c009640 /pom.xml | |
parent | c9097cd1b6273d7b7f7156067118b9e92bb9c059 (diff) | |
download | sonarqube-0b75ead802109cdcdfa67e0098308a6211f19e05.tar.gz sonarqube-0b75ead802109cdcdfa67e0098308a6211f19e05.zip |
Faster build by extracting GWT compilation to project sonar-gwt-pages
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 42 |
1 files changed, 5 insertions, 37 deletions
@@ -74,7 +74,6 @@ <properties> <sonarUpdateCenter.version>1.8</sonarUpdateCenter.version> <sonarJava.version>1.5</sonarJava.version> - <sonarGwt.version>3.3.1</sonarGwt.version> <h2.version>1.3.172</h2.version> <jetty.version>8.1.12.v20130726</jetty.version> <logback.version>1.0.13</logback.version> @@ -96,9 +95,6 @@ <version.maven-license.plugin>1.9.0</version.maven-license.plugin> <skipSanityChecks>false</skipSanityChecks> - <!-- default GWT configuration. It's overridden by the profile 'dev' to speed up compilation in dev environments--> - <gwt.permutationSuffix/> - <gwt.extraJvmArgs>-Xmx512m -Xss1024k</gwt.extraJvmArgs> <sonar.snapshotRepository.url>dav:https://dav.codehaus.org/snapshots.repository/sonar</sonar.snapshotRepository.url> </properties> @@ -188,12 +184,6 @@ <version>1.4</version> </plugin> <plugin> - <!-- not thread safe --> - <groupId>org.codehaus.mojo</groupId> - <artifactId>gwt-maven-plugin</artifactId> - <version>1.2</version> - </plugin> - <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> <version>2.5.1</version> @@ -754,16 +744,6 @@ </exclusions> </dependency> <dependency> - <groupId>com.google.gwt</groupId> - <artifactId>gwt-user</artifactId> - <version>2.0.4</version> - </dependency> - <dependency> - <groupId>com.google.gwt</groupId> - <artifactId>gwt-incubator</artifactId> - <version>2.0.1</version> - </dependency> - <dependency> <groupId>com.ibm.icu</groupId> <artifactId>icu4j</artifactId> <!-- animal-sniffer doesn't work with 2.6.1 --> @@ -887,6 +867,11 @@ <version>9.1-901-1.jdbc4</version> </dependency> <dependency> + <groupId>org.codehaus.sonar</groupId> + <artifactId>sonar-gwt-pages</artifactId> + <version>4.0</version> + </dependency> + <dependency> <groupId>net.sourceforge.jtds</groupId> <artifactId>jtds</artifactId> <!-- versions 1.3.x require java 7 --> @@ -1192,10 +1177,6 @@ <id>dev</id> <properties> <skipSanityChecks>true</skipSanityChecks> - - <!-- used in sonar-design-plugin --> - <gwt.permutationSuffix>Dev</gwt.permutationSuffix> - <gwt.extraJvmArgs>-Xmx512m -Xss1024k -Dgwt.draftCompile=true</gwt.extraJvmArgs> </properties> </profile> @@ -1286,19 +1267,6 @@ </pluginExecution> <pluginExecution> <pluginExecutionFilter> - <groupId>org.codehaus.mojo</groupId> - <artifactId>gwt-maven-plugin</artifactId> - <versionRange>[1.0,)</versionRange> - <goals> - <goal>compile</goal> - </goals> - </pluginExecutionFilter> - <action> - <ignore/> - </action> - </pluginExecution> - <pluginExecution> - <pluginExecutionFilter> <groupId>org.codehaus.sonar</groupId> <artifactId>sonar-dev-maven-plugin</artifactId> <versionRange>[1.0,)</versionRange> |