Skip to content

Commit 28f8683

Browse files
committed
[#142] TeXlipse build is not signed
* reconfigure sign profile
1 parent 4b3280d commit 28f8683

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

pom.xml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -120,21 +120,22 @@
120120
<profiles>
121121
<profile>
122122
<id>sign</id>
123-
<activation>
124-
<property>
125-
<name>artifacts.sign</name>
126-
<value>true</value>
127-
</property>
128-
</activation>
129123
<build>
130124
<plugins>
131125
<plugin>
132126
<groupId>org.eclipse.cbi.maven.plugins</groupId>
133127
<artifactId>eclipse-jarsigner-plugin</artifactId>
134128
<version>1.4.3</version>
135-
<configuration>
136-
<resigningStrategy>DO_NOT_RESIGN</resigningStrategy>
137-
</configuration>
129+
<executions>
130+
<execution>
131+
<id>sign</id>
132+
<!-- Eclipse jar-signing must occur before GPG signing. -->
133+
<phase>post-integration-test</phase>
134+
<goals>
135+
<goal>sign</goal>
136+
</goals>
137+
</execution>
138+
</executions>
138139
</plugin>
139140
</plugins>
140141
</build>

0 commit comments

Comments
 (0)