diff options
author | Henri Sara <hesara@vaadin.com> | 2016-08-12 09:46:30 +0300 |
---|---|---|
committer | Henri Sara <hesara@vaadin.com> | 2016-08-12 10:58:44 +0300 |
commit | b093657dbb4c18a5e0f402ef159d1f626cf7db08 (patch) | |
tree | 56cdac3d2a39e7a514c1eaa465b8aaf250c0143b | |
parent | 6b26a9846d94dcd4993c5d42ba1f3a749bb817f8 (diff) | |
download | vaadin-framework-b093657dbb4c18a5e0f402ef159d1f626cf7db08.tar.gz vaadin-framework-b093657dbb4c18a5e0f402ef159d1f626cf7db08.zip |
Remove unused GWT dependencies
As vaadin-client-compiler dependens on gwt-dev, the gwt-dev dependencies
are either bundled in gwt-dev or specified as transitive dependencies
for it, so there is no need to specify them again for
vaadin-client-compiler
Change-Id: Iec075a3b4a005ae7b2e331287d942357aafe277d
-rw-r--r-- | client-compiler/pom.xml | 149 | ||||
-rw-r--r-- | client/pom.xml | 2 |
2 files changed, 5 insertions, 146 deletions
diff --git a/client-compiler/pom.xml b/client-compiler/pom.xml index 4564bfb0a5..6aeace4a96 100644 --- a/client-compiler/pom.xml +++ b/client-compiler/pom.xml @@ -17,159 +17,18 @@ <dependencies> <dependency> <groupId>com.vaadin</groupId> - <artifactId>vaadin-shared</artifactId> - <version>${project.version}</version> - </dependency> - <dependency> - <groupId>com.vaadin</groupId> - <artifactId>vaadin-server</artifactId> + <artifactId>vaadin-client</artifactId> <version>${project.version}</version> </dependency> <dependency> - <groupId>com.vaadin</groupId> - <artifactId>vaadin-client</artifactId> - <version>${project.version}</version> + <groupId>com.vaadin.external.gwt</groupId> + <artifactId>gwt-dev</artifactId> + <version>${vaadin.gwt.version}</version> </dependency> <dependency> <groupId>com.vaadin</groupId> <artifactId>vaadin-sass-compiler</artifactId> <version>${vaadin.sass.version}</version> - <!-- remove cssparser override once sass-compiler is updated --> - <exclusions> - <exclusion> - <groupId>net.sourceforge.cssparser</groupId> - <artifactId>cssparser</artifactId> - </exclusion> - </exclusions> - </dependency> - - <dependency> - <groupId>commons-collections</groupId> - <artifactId>commons-collections</artifactId> - <version>3.1</version> - </dependency> - <dependency> - <groupId>commons-logging</groupId> - <artifactId>commons-logging</artifactId> - <version>1.1.3</version> - </dependency> - <dependency> - <groupId>net.sourceforge.cssparser</groupId> - <artifactId>cssparser</artifactId> - <version>0.9.11</version> - </dependency> - <dependency> - <groupId>ant</groupId> - <artifactId>ant</artifactId> - <version>1.6.5</version> - </dependency> - <dependency> - <groupId>ant</groupId> - <artifactId>ant-launcher</artifactId> - <version>1.6.5</version> - </dependency> - <dependency> - <groupId>org.eclipse.jetty</groupId> - <artifactId>jetty-annotations</artifactId> - <version>8.1.12.v20130726</version> - <exclusions> - <exclusion> - <groupId>org.eclipse.jetty.orbit</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - </dependency> - <dependency> - <groupId>org.eclipse.jetty</groupId> - <artifactId>jetty-servlets</artifactId> - <version>8.1.12.v20130726</version> - <exclusions> - <exclusion> - <groupId>org.eclipse.jetty.orbit</groupId> - <artifactId>*</artifactId> - </exclusion> - </exclusions> - - </dependency> - <dependency> - <groupId>org.eclipse.jetty</groupId> - <artifactId>jetty-util</artifactId> - <version>8.1.12.v20130726</version> - </dependency> - <dependency> - <groupId>org.jdesktop</groupId> - <artifactId>swing-worker</artifactId> - <version>1.1</version> - </dependency> - <dependency> - <groupId>commons-codec</groupId> - <artifactId>commons-codec</artifactId> - <version>1.8</version> - </dependency> - <dependency> - <groupId>commons-io</groupId> - <artifactId>commons-io</artifactId> - <version>${commons-io.version}</version> - </dependency> - <dependency> - <groupId>org.apache.commons</groupId> - <artifactId>commons-lang3</artifactId> - <version>3.1</version> - </dependency> - <dependency> - <groupId>org.apache.james</groupId> - <artifactId>apache-mime4j</artifactId> - <version>0.6</version> - </dependency> - <dependency> - <groupId>org.apache.httpcomponents</groupId> - <artifactId>httpclient</artifactId> - <version>4.3.1</version> - </dependency> - <dependency> - <groupId>org.apache.httpcomponents</groupId> - <artifactId>httpcore</artifactId> - <version>4.3</version> - </dependency> - <dependency> - <groupId>org.apache.httpcomponents</groupId> - <artifactId>httpmime</artifactId> - <version>4.3.1</version> - </dependency> - <dependency> - <groupId>net.sourceforge.nekohtml</groupId> - <artifactId>nekohtml</artifactId> - <version>1.9.19</version> - </dependency> - <dependency> - <groupId>xalan</groupId> - <artifactId>serializer</artifactId> - <version>2.7.1</version> - </dependency> - <dependency> - <groupId>xerces</groupId> - <artifactId>xercesImpl</artifactId> - <version>2.11.0</version> - </dependency> - <dependency> - <groupId>xml-apis</groupId> - <artifactId>xml-apis</artifactId> - <version>1.4.01</version> - </dependency> - <dependency> - <groupId>com.ibm.icu</groupId> - <artifactId>icu4j</artifactId> - <version>50.1.1</version> - </dependency> - <dependency> - <groupId>com.vaadin</groupId> - <artifactId>vaadin-client-compiler-deps</artifactId> - <version>1.2.0</version> - </dependency> - <dependency> - <groupId>com.vaadin.external.gwt</groupId> - <artifactId>gwt-dev</artifactId> - <version>${vaadin.gwt.version}</version> </dependency> <dependency> <groupId>junit</groupId> diff --git a/client/pom.xml b/client/pom.xml index a980c97162..46c5422b67 100644 --- a/client/pom.xml +++ b/client/pom.xml @@ -51,7 +51,7 @@ <scope>test</scope> </dependency> - <!-- Needed GWT dependencies. Required parts are packaged to jar --> + <!-- Needed GWT dependencies, includes gwt-user --> <dependency> <groupId>com.vaadin.external.gwt</groupId> <artifactId>gwt-elemental</artifactId> |