----- Original Message -----
| From: "Aaron Cordova" <[EMAIL PROTECTED]>
| To: [EMAIL PROTECTED]
| Sent: Thursday, October 20, 2011 9:32:51 AM
| Subject: mvn assembly
| Maybe my maven's broken but I can't build all the way through
| assembly:assembly without manually adding the jars that are built to
| my local maven repo.
|
| So mvn assembly:assembly builds cloudtrace and accumulo-start jars,
| then fails
| If I add cloudtrace and accumulo-start to the local repo, then
| accumulo-core builds, then mvn fails
| I add accumulo-core to the local repo, mvn continues, then completes
| saying:
|
| [INFO] Reactor Summary:
| [INFO]
| [INFO] accumulo .......................................... SUCCESS
| [1:31.829s]
| [INFO] cloudtrace ........................................ SKIPPED
| [INFO] accumulo-start .................................... SKIPPED
| [INFO] accumulo-core ..................................... SKIPPED
| [INFO] accumulo-server ................................... SKIPPED
| [INFO] accumulo-examples ................................. SKIPPED
| [INFO]
| ------------------------------------------------------------------------
| [INFO] BUILD SUCCESS
| [INFO]
| ------------------------------------------------------------------------
|
|
| Should mvn assembly:assembly be installing completed jars into the
| local repo as it goes?
|
| Aaron
https://issues.apache.org/jira/browse/ACCUMULO-25mvn assembly:assembly doesn't perform the action right and is deprecated. mvn assembly:single will assembly blindly without verifying functionality. Do a mvn package first and then mvn assembly(single or assembly should both work).