diff options
author | Teemu Suo-Anttila <tsuoanttila@users.noreply.github.com> | 2016-12-09 11:15:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-09 11:15:24 +0200 |
commit | 57fbf2f142f825ce1c47e062228e99857add8968 (patch) | |
tree | 30ecbb757959c29b26277331c573bd5ebfd7f696 | |
parent | 1e0cf0597578ad3d9a002e676d0279a8ea5ea99c (diff) | |
download | vaadin-framework-57fbf2f142f825ce1c47e062228e99857add8968.tar.gz vaadin-framework-57fbf2f142f825ce1c47e062228e99857add8968.zip |
Fix java packaging order (#106)
Closes vaadin/archetypes#113
-rw-r--r-- | client-compiler/pom.xml | 2 | ||||
-rw-r--r-- | client/pom.xml | 2 | ||||
-rw-r--r-- | server/pom.xml | 2 | ||||
-rw-r--r-- | shared/pom.xml | 2 | ||||
-rw-r--r-- | widgets/pom.xml | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/client-compiler/pom.xml b/client-compiler/pom.xml index 0aac82a2a2..c6026ff5b3 100644 --- a/client-compiler/pom.xml +++ b/client-compiler/pom.xml @@ -66,7 +66,7 @@ <execution> <id>copy-sources</id> <!-- here the phase you need --> - <phase>prepare-package</phase> + <phase>process-resources</phase> <goals> <goal>copy-resources</goal> </goals> diff --git a/client/pom.xml b/client/pom.xml index bdc7644344..8f66302e54 100644 --- a/client/pom.xml +++ b/client/pom.xml @@ -68,7 +68,7 @@ <execution> <id>copy-sources</id> <!-- here the phase you need --> - <phase>prepare-package</phase> + <phase>process-resources</phase> <goals> <goal>copy-resources</goal> </goals> diff --git a/server/pom.xml b/server/pom.xml index 88ff3d419f..58cbe9cf79 100644 --- a/server/pom.xml +++ b/server/pom.xml @@ -166,7 +166,7 @@ <execution> <id>copy-sources</id> <!-- here the phase you need --> - <phase>prepare-package</phase> + <phase>process-resources</phase> <goals> <goal>copy-resources</goal> </goals> diff --git a/shared/pom.xml b/shared/pom.xml index c374c272b0..405e1dd9a3 100644 --- a/shared/pom.xml +++ b/shared/pom.xml @@ -87,7 +87,7 @@ <execution> <id>copy-sources</id> <!-- here the phase you need --> - <phase>prepare-package</phase> + <phase>process-resources</phase> <goals> <goal>copy-resources</goal> </goals> diff --git a/widgets/pom.xml b/widgets/pom.xml index 2c18c62e7e..9c4c3501e6 100644 --- a/widgets/pom.xml +++ b/widgets/pom.xml @@ -165,7 +165,7 @@ <execution> <id>copy-sources</id> <!-- here the phase you need --> - <phase>prepare-package</phase> + <phase>process-resources</phase> <goals> <goal>copy-resources</goal> </goals> |