|
38 | 38 | <properties> |
39 | 39 | <tycho.version>4.0.11</tycho.version> |
40 | 40 | <bnd.version>7.1.0</bnd.version> |
41 | | - <skip.artifact.signing>true</skip.artifact.signing> |
42 | | - <keystore.type>JKS</keystore.type> |
43 | 41 | </properties> |
44 | 42 |
|
45 | 43 | <!-- All of the external dependencies that are needed for your bundle --> |
|
161 | 159 | </executions> |
162 | 160 | </plugin> |
163 | 161 |
|
164 | | - <plugin> |
165 | | - <groupId>org.apache.maven.plugins</groupId> |
166 | | - <artifactId>maven-jarsigner-plugin</artifactId> |
167 | | - <version>1.4</version> |
168 | | - <executions> |
169 | | - <execution> |
170 | | - <id>sign</id> |
171 | | - <goals> |
172 | | - <goal>sign</goal> |
173 | | - </goals> |
174 | | - </execution> |
175 | | - </executions> |
176 | | - <configuration> |
177 | | - <skip>${skip.artifact.signing}</skip> |
178 | | - <storetype>${keystore.type}</storetype> |
179 | | - <keystore>${addon.keystore.path}</keystore> |
180 | | - <alias>${addon.key.alias}</alias> |
181 | | - <storepass>${addon.keystore.password}</storepass> |
182 | | - <keypass>${addon.key.password}</keypass> |
183 | | - <arguments> |
184 | | - <argument>-tsa</argument> |
185 | | - <argument>http://timestamp.digicert.com</argument> |
186 | | - </arguments> |
187 | | - </configuration> |
188 | | - </plugin> |
189 | | - |
190 | | - <!-- Enable jar signing via Eclipse Signing Server --> |
191 | | - <!-- See |
192 | | - http://codeandme.blogspot.com/2017/04/host-your-own-eclipse-signing-server.html --> |
193 | | - <!-- Note that https is not supported --> |
194 | | - <plugin> |
195 | | - <groupId>org.eclipse.cbi.maven.plugins</groupId> |
196 | | - <artifactId>eclipse-jarsigner-plugin</artifactId> |
197 | | - <version>1.1.5</version> |
198 | | - <executions> |
199 | | - <execution> |
200 | | - <id>sign</id> |
201 | | - <goals> |
202 | | - <goal>sign</goal> |
203 | | - </goals> |
204 | | - <phase>verify</phase> |
205 | | - </execution> |
206 | | - </executions> |
207 | | - <configuration> |
208 | | - <signerUrl>http://localhost:8080/jarsigner</signerUrl> |
209 | | - </configuration> |
210 | | - </plugin> |
211 | | - |
212 | 162 | <plugin> |
213 | 163 | <groupId>org.honton.chas</groupId> |
214 | 164 | <artifactId>exists-maven-plugin</artifactId> |
|
292 | 242 | <groupId>biz.aQute.bnd</groupId> |
293 | 243 | <artifactId>bnd-maven-plugin</artifactId> |
294 | 244 | </plugin> |
295 | | - <plugin> |
296 | | - <groupId>org.apache.maven.plugins</groupId> |
297 | | - <artifactId>maven-jarsigner-plugin</artifactId> |
298 | | - </plugin> |
299 | 245 | <!-- by default, skip deploy --> |
300 | 246 | <!-- bundles that want to deploy must override this configuration --> |
301 | 247 | <plugin> |
|
0 commit comments