Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--m2e-maven-runtime/pom.xml4
-rw-r--r--pom.xml6
2 files changed, 8 insertions, 2 deletions
diff --git a/m2e-maven-runtime/pom.xml b/m2e-maven-runtime/pom.xml
index f45ad21d..5f2709ce 100644
--- a/m2e-maven-runtime/pom.xml
+++ b/m2e-maven-runtime/pom.xml
@@ -174,7 +174,7 @@
<plugin>
<groupId>org.eclipse.cbi.maven.plugins</groupId>
<artifactId>eclipse-jarsigner-plugin</artifactId>
- <version>1.1.4</version>
+ <version>1.1.5</version>
<executions>
<execution>
<id>sign</id>
@@ -188,6 +188,8 @@
<supportedProjectTypes>
<supportedProjectType>bundle</supportedProjectType>
</supportedProjectTypes>
+ <excludeInnerJars>true</excludeInnerJars>
+ <resigningStrategy>DO_NOT_RESIGN</resigningStrategy>
</configuration>
</plugin>
diff --git a/pom.xml b/pom.xml
index 107fbe74..f04f3667 100644
--- a/pom.xml
+++ b/pom.xml
@@ -265,7 +265,7 @@
<plugin>
<groupId>org.eclipse.cbi.maven.plugins</groupId>
<artifactId>eclipse-jarsigner-plugin</artifactId>
- <version>1.1.4</version>
+ <version>1.1.5</version>
<executions>
<execution>
<id>sign</id>
@@ -274,6 +274,10 @@
</goals>
</execution>
</executions>
+ <configuration>
+ <excludeInnerJars>true</excludeInnerJars>
+ <resigningStrategy>DO_NOT_RESIGN</resigningStrategy>
+ </configuration>
</plugin>
<plugin>

Back to the top