Stop including gwt-dev JARs in project classpath
These aren't supposed to be in our classpath, as they are only required to run the GWT compiler. The Maven plugin should be loading these as necessary to execute the compiler, without exposing them to the app it is compiling. Prior to gwt-maven-plugin 1.1 this was not working right so we had to include the gwt-dev JARs as a workaround. Now that we are using 1.1, the issue appears to be fixed, so we can drop these. Signed-off-by: Shawn O. Pearce <sop@google.com>
This commit is contained in:
54
pom.xml
54
pom.xml
@@ -609,62 +609,8 @@ limitations under the License.
|
||||
<version>${gwtVersion}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.google.gwt</groupId>
|
||||
<artifactId>gwt-dev</artifactId>
|
||||
<version>${gwtVersion}</version>
|
||||
<classifier>${platform}-libs</classifier>
|
||||
<type>zip</type>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.google.gwt</groupId>
|
||||
<artifactId>gwt-dev</artifactId>
|
||||
<version>${gwtVersion}</version>
|
||||
<classifier>${platform}</classifier>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>gwt-dev-windows</id>
|
||||
<properties>
|
||||
<platform>windows</platform>
|
||||
</properties>
|
||||
<activation>
|
||||
<activeByDefault>true</activeByDefault>
|
||||
<os>
|
||||
<family>windows</family>
|
||||
</os>
|
||||
</activation>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>gwt-dev-mac</id>
|
||||
<properties>
|
||||
<platform>mac</platform>
|
||||
</properties>
|
||||
<activation>
|
||||
<activeByDefault>false</activeByDefault>
|
||||
<os>
|
||||
<family>mac</family>
|
||||
</os>
|
||||
</activation>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>gwt-dev-linux</id>
|
||||
<properties>
|
||||
<platform>linux</platform>
|
||||
</properties>
|
||||
<activation>
|
||||
<activeByDefault>false</activeByDefault>
|
||||
<os>
|
||||
<name>linux</name>
|
||||
</os>
|
||||
</activation>
|
||||
</profile>
|
||||
</profiles>
|
||||
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>jgit-repository</id>
|
||||
|
||||
Reference in New Issue
Block a user