summaryrefslogtreecommitdiffstats
path: root/client-compiler/pom.xml
diff options
context:
space:
mode:
authorTeemu Suo-Anttila <teemusa@vaadin.com>2016-05-02 14:30:42 +0300
committerTeemu Suo-Anttila <teemusa@vaadin.com>2016-06-01 10:59:24 +0300
commitfb63a60cc40133a0062dd77b9694d80b1b39155c (patch)
tree594dcba2dba8c732860fd6dd436a9ae93a658755 /client-compiler/pom.xml
parent68784363dca98529286420206b22a9a8881c70dc (diff)
downloadvaadin-framework-fb63a60cc40133a0062dd77b9694d80b1b39155c.tar.gz
vaadin-framework-fb63a60cc40133a0062dd77b9694d80b1b39155c.zip
Use gwt-user and gwt-dev dependencies in client and compiler
This removes GWT dependency from the server and shared parts of the framework Change-Id: Iafbb752c0184611a18d4a9d61c9e03229d42836e
Diffstat (limited to 'client-compiler/pom.xml')
-rw-r--r--client-compiler/pom.xml63
1 files changed, 1 insertions, 62 deletions
diff --git a/client-compiler/pom.xml b/client-compiler/pom.xml
index ef6f5cbeb4..33a3423b3f 100644
--- a/client-compiler/pom.xml
+++ b/client-compiler/pom.xml
@@ -69,21 +69,6 @@
<version>1.6.5</version>
</dependency>
<dependency>
- <groupId>org.ow2.asm</groupId>
- <artifactId>asm</artifactId>
- <version>5.0.3</version>
- </dependency>
- <dependency>
- <groupId>org.ow2.asm</groupId>
- <artifactId>asm-util</artifactId>
- <version>5.0.3</version>
- </dependency>
- <dependency>
- <groupId>org.ow2.asm</groupId>
- <artifactId>asm-commons</artifactId>
- <version>5.0.3</version>
- </dependency>
- <dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-annotations</artifactId>
<version>8.1.12.v20130726</version>
@@ -185,7 +170,6 @@
<groupId>com.vaadin.external.gwt</groupId>
<artifactId>gwt-dev</artifactId>
<version>${vaadin.gwt.version}</version>
- <scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
@@ -206,51 +190,6 @@
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-dependency-plugin</artifactId>
- <executions>
- <execution>
- <id>unpack-dependencies</id>
- <phase>generate-resources</phase>
- <goals>
- <goal>unpack</goal>
- </goals>
- <configuration>
- <artifactItems>
- <artifactItem>
- <groupId>com.vaadin.external.gwt</groupId>
- <artifactId>gwt-dev</artifactId>
- <includes>
- about_files/**,
- com/google/gwt/core/**,
- com/google/gwt/dev/**,
- com/google/gwt/lang/**,
- com/google/gwt/soyc/**,
- com/google/gwt/thirdparty/json/**,
- com/google/gwt/thirdparty/guava/**,
- com/google/gwt/util/**,
- license/LICENSE.sax.txt,
- netscape/**,
- org/apache/COPYING,
- org/apache/jasper/**,
- org/apache/commons/el/**,
- org/apache/commons/lang3/**,
- templates/*,
- about.html,
- jetty-dir.css,
- plugin.properties
- </includes>
- <excludes>
- com/google/gwt/dev/protobuf/**,
- com/google/gwt/dev/About.properties
- </excludes>
- </artifactItem>
- </artifactItems>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<executions>
<execution>
@@ -291,7 +230,7 @@
<configuration>
<instructions>
<Bundle-RequiredExecutionEnvironment>JavaSE-1.6</Bundle-RequiredExecutionEnvironment>
- <Export-Package>com.vaadin.*;version="${project.version}",com.google.gwt.*;version="${project.version}"</Export-Package>
+ <Export-Package>com.vaadin.*;version="${project.version}"</Export-Package>
<!--TODO decide gwt packages version number<Export-Package>com.vaadin.*;version="${project.version}",com.google.gwt.*;version="${vaadin.gwt.version}"</Export-Package> -->
<Import-Package></Import-Package> <!--todo find out what should be in Import-Package -->
</instructions>