diff options
author | Teemu Suo-Anttila <teemusa@vaadin.com> | 2016-05-02 14:30:42 +0300 |
---|---|---|
committer | Teemu Suo-Anttila <teemusa@vaadin.com> | 2016-06-01 10:59:24 +0300 |
commit | fb63a60cc40133a0062dd77b9694d80b1b39155c (patch) | |
tree | 594dcba2dba8c732860fd6dd436a9ae93a658755 /client/pom.xml | |
parent | 68784363dca98529286420206b22a9a8881c70dc (diff) | |
download | vaadin-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/pom.xml')
-rw-r--r-- | client/pom.xml | 73 |
1 files changed, 1 insertions, 72 deletions
diff --git a/client/pom.xml b/client/pom.xml index 8a80b3ddbb..87a6e93d53 100644 --- a/client/pom.xml +++ b/client/pom.xml @@ -36,28 +36,6 @@ </exclusions> </dependency> - <!-- gwt-user dependencies --> - <dependency> - <groupId>org.w3c.css</groupId> - <artifactId>sac</artifactId> - <version>1.3</version> - </dependency> - - <!-- Bean Validation API --> - <dependency> - <groupId>javax.validation</groupId> - <artifactId>validation-api</artifactId> - <version>${javax.validation.version}</version> - <scope>provided</scope> - </dependency> - - <dependency> - <groupId>javax.validation</groupId> - <artifactId>validation-api</artifactId> - <version>${javax.validation.version}</version> - <classifier>sources</classifier> - </dependency> - <!-- Testing dependencies --> <dependency> <groupId>junit</groupId> @@ -76,62 +54,13 @@ <!-- Needed GWT dependencies. Required parts are packaged to jar --> <dependency> <groupId>com.vaadin.external.gwt</groupId> - <artifactId>gwt-user</artifactId> - <version>${vaadin.gwt.version}</version> - <scope>provided</scope> - </dependency> - <dependency> - <groupId>com.vaadin.external.gwt</groupId> <artifactId>gwt-elemental</artifactId> <version>${vaadin.gwt.version}</version> - <scope>provided</scope> </dependency> </dependencies> <build> <plugins> - - <!-- Copy needed GWT dependencies to package --> - <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-user</artifactId> - <excludes> - META-INF/**, - **/*.gwtar, - com/google/gwt/*/server/**, - com/google/gwt/*/shared/**, - com/google/gwt/*/*/shared/**, - com/google/web/bindery/*/shared/**, - com/google/gwt/user/client/rpc/IsSerializable.*, - com/google/gwt/thirdparty/streamhtmlparser/**, - org/w3c/**, - javax/servlet/** - </excludes> - </artifactItem> - <artifactItem> - <groupId>com.vaadin.external.gwt</groupId> - <artifactId>gwt-elemental</artifactId> - <excludes>META-INF/**</excludes> - </artifactItem> - </artifactItems> - </configuration> - </execution> - </executions> - </plugin> - - <plugin> <artifactId>maven-resources-plugin</artifactId> <executions> @@ -167,7 +96,7 @@ <configuration> <instructions> <Bundle-RequiredExecutionEnvironment>JavaSE-1.6</Bundle-RequiredExecutionEnvironment> - <Export-Package>com.vaadin.*;version="${project.version}",com.google.*;version="${project.version}"</Export-Package> + <Export-Package>com.vaadin.*;version="${project.version}"</Export-Package> <Import-Package></Import-Package> </instructions> </configuration> |