There was an error while loading. Please reload this page.
1 parent 4b3280d commit 28f8683Copy full SHA for 28f8683
1 file changed
pom.xml
@@ -120,21 +120,22 @@
120
<profiles>
121
<profile>
122
<id>sign</id>
123
- <activation>
124
- <property>
125
- <name>artifacts.sign</name>
126
- <value>true</value>
127
- </property>
128
- </activation>
129
<build>
130
<plugins>
131
<plugin>
132
<groupId>org.eclipse.cbi.maven.plugins</groupId>
133
<artifactId>eclipse-jarsigner-plugin</artifactId>
134
<version>1.4.3</version>
135
- <configuration>
136
- <resigningStrategy>DO_NOT_RESIGN</resigningStrategy>
137
- </configuration>
+ <executions>
+ <execution>
+ <id>sign</id>
+ <!-- Eclipse jar-signing must occur before GPG signing. -->
+ <phase>post-integration-test</phase>
+ <goals>
+ <goal>sign</goal>
+ </goals>
+ </execution>
138
+ </executions>
139
</plugin>
140
</plugins>
141
</build>
0 commit comments