Browse Source

Use correct unpack goal in shared, rename push

Change-Id: Ib01fec5ebcefd429bf94badaa069cf486bb8156d
tags/7.7.0.alpha1
Teemu Suo-Anttila 8 years ago
parent
commit
646cbaecbb
2 changed files with 20 additions and 3 deletions
  1. 1
    1
      push/pom.xml
  2. 19
    2
      shared/pom.xml

+ 1
- 1
push/pom.xml View File

@@ -8,7 +8,7 @@
<version>7.7.0-SNAPSHOT</version>
</parent>
<artifactId>vaadin-push</artifactId>
<name>Vaadin Push</name>
<name>vaadin-push</name>
<packaging>jar</packaging>
<properties>


+ 19
- 2
shared/pom.xml View File

@@ -47,6 +47,12 @@
<version>${vaadin.gwt.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.vaadin.external.gwt</groupId>
<artifactId>gwt-user</artifactId>
<version>${vaadin.gwt.version}</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>junit</groupId>
@@ -82,20 +88,31 @@
<id>unpack-dependencies</id>
<phase>prepare-package</phase>
<goals>
<goal>unpack-dependencies</goal>
<goal>unpack</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>com.vaadin.external.gwt</groupId>
<artifactId>gwt-elemental</artifactId>
<includes>
elemental/json/**,
elemental/util/Array*,
elemental/util/Can*,
elemental/util/Map*
</includes>
</artifactItem>
<artifactItem>
<groupId>com.vaadin.external.gwt</groupId>
<artifactId>gwt-user</artifactId>
<includes>
com/google/gwt/*/shared/**,
com/google/gwt/*/*/shared/**,
com/google/web/bindery/*/shared/**,
com/google/gwt/user/client/rpc/IsSerializable.*
</includes>
</artifactItem>
</artifactItems>
<includes>elemental/json/**,elemental/util/Array*,elemental/util/Can*,elemental/util/Map*,com/google/gwt/*/shared/**,com/google/gwt/*/*/shared/**,com/google/web/bindery/*/shared/**,com/google/gwt/user/client/rpc/IsSerializable.*</includes>
<outputDirectory>${project.build.directory}/classes</outputDirectory>
<overWriteReleases>false</overWriteReleases>
<overWriteSnapshots>true</overWriteSnapshots>

Loading…
Cancel
Save