]
Dan Berindei updated ISPN-5007:
-------------------------------
Status: Resolved (was: Pull Request Sent)
Fix Version/s: 7.1.0.Alpha1
Resolution: Done
Enhance the distribution script to detect missing artifacts
-----------------------------------------------------------
Key: ISPN-5007
URL:
https://issues.jboss.org/browse/ISPN-5007
Project: Infinispan
Issue Type: Feature Request
Components: Build process
Affects Versions: 7.0.2.Final
Reporter: Ion Savin
Assignee: Ion Savin
Fix For: 7.1.0.Alpha1
The build should fail if the maven artifacts to be copied into the distribution jar are
not found.
To reproduce the issue apply this patch (the build will succeed but the distribution .zip
will not contain the uberjars):
{noformat}
diff --git a/all/pom.xml b/all/pom.xml
index cecd6c6..779ed97 100644
--- a/all/pom.xml
+++ b/all/pom.xml
@@ -25,7 +25,7 @@
<executions>
<execution>
<id>mrproper</id>
- <phase>prepare-package</phase>
+ <phase>initialize</phase>
<goals>
<goal>clean</goal>
</goals>
{noformat}