-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The unpacking previously happened in the prepage-package lifecycle phase of maven. That's far too late, since other compilation steps require those sources. I had multiple failing local builds because of this. Until now this only worked correctly because either * the eclipse builder would compile the depending sources again when the maven build unpacked everything * the maven build was not fast enough in parallel processing * the sources were still available locally from the last download, when not using clean in between Also ensure the order of download and unpack is correct by converting the download to an Ant task and moving it into the same execution. As a side effect, this avoids the download progress messages of the previous download-maven-plugin.
- Loading branch information
1 parent
4b1f147
commit 823a271
Showing
2 changed files
with
9 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters