Skip to content

Commit

Permalink
Build: Change plugin execution order.
Browse files Browse the repository at this point in the history
  • Loading branch information
Christoph Daniel Schulze committed Jun 9, 2018
1 parent 8b05b5d commit 30bed30
Showing 1 changed file with 25 additions and 25 deletions.
50 changes: 25 additions & 25 deletions build/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,31 @@
</distributionManagement>
</profile>

<!-- Activate to have the generated artifacts signed by Eclipse. -->
<!-- Only works if the build is run on the Eclipse infrastructure. -->
<profile>
<id>sign</id>

<build>
<plugins>
<plugin>
<groupId>org.eclipse.cbi.maven.plugins</groupId>
<artifactId>eclipse-jarsigner-plugin</artifactId>
<version>1.1.3</version>
<executions>
<execution>
<id>sign</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>

<!-- The Maven publishing configuration. -->
<profile>
<id>maven-publish</id>
Expand Down Expand Up @@ -157,31 +182,6 @@
</build>
</profile>

<!-- Activate to have the generated artifacts signed by Eclipse. -->
<!-- Only works if the build is run on the Eclipse infrastructure. -->
<profile>
<id>sign</id>

<build>
<plugins>
<plugin>
<groupId>org.eclipse.cbi.maven.plugins</groupId>
<artifactId>eclipse-jarsigner-plugin</artifactId>
<version>1.1.3</version>
<executions>
<execution>
<id>sign</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>

</profiles>


Expand Down

0 comments on commit 30bed30

Please sign in to comment.