diff options
-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 93a70a464b..a6851a71ea 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 eb89eea11e..f7004471b4 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> |