-
Notifications
You must be signed in to change notification settings - Fork 286
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix plugin execution order in osgi module
- Loading branch information
Showing
1 changed file
with
7 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -247,6 +247,12 @@ | |
</execution> | ||
</executions> | ||
</plugin> | ||
<!-- The gpg plugin is here just to ensure order of execution *after* shade plugin --> | ||
<!-- It does nothing in a standard build and the whole configuration of this plugin remains in Weld parent --> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-gpg-plugin</artifactId> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
|
@@ -362,7 +368,7 @@ | |
<connection>scm:git:[email protected]:weld/core.git</connection> | ||
<developerConnection>scm:git:[email protected]:weld/core.git</developerConnection> | ||
<url>scm:git:[email protected]:weld/core.git</url> | ||
<tag>5.0.0-SNAPSHOT</tag> | ||
<tag>6.0.0-SNAPSHOT</tag> | ||
</scm> | ||
|
||
</project> |