aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Mandrikov <Godin@users.noreply.github.com>2016-12-09 23:37:06 +0100
committerMarc R. Hoffmann <hoffmann@mountainminds.com>2016-12-09 23:37:06 +0100
commit52284d137cf391b556afcda805749474b5fe2bf7 (patch)
tree0c7bef417dfce3c3710773bb25a3146587dfa68e
parentf749802c381e3566bac86d9b3a975ecf47655267 (diff)
downloadjacoco-52284d137cf391b556afcda805749474b5fe2bf7.tar.gz
No need to sign JARs using maven-jarsigner-plugin (#466)
-rw-r--r--jacoco/pom.xml4
-rw-r--r--org.jacoco.agent.rt/pom.xml1
-rw-r--r--org.jacoco.build/pom.xml36
-rw-r--r--org.jacoco.doc/docroot/doc/changes.html7
4 files changed, 7 insertions, 41 deletions
diff --git a/jacoco/pom.xml b/jacoco/pom.xml
index a53f54f4..a03e7173 100644
--- a/jacoco/pom.xml
+++ b/jacoco/pom.xml
@@ -25,10 +25,6 @@
<name>JaCoCo :: Distribution</name>
<description>JaCoCo Standalone Distribution</description>
- <properties>
- <jarsigner.skip>true</jarsigner.skip>
- </properties>
-
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
diff --git a/org.jacoco.agent.rt/pom.xml b/org.jacoco.agent.rt/pom.xml
index 067dde03..b9837ac7 100644
--- a/org.jacoco.agent.rt/pom.xml
+++ b/org.jacoco.agent.rt/pom.xml
@@ -26,7 +26,6 @@
<description>JaCoCo Java Agent</description>
<properties>
- <jarsigner.skip>true</jarsigner.skip>
<maven.deploy.skip>true</maven.deploy.skip>
<maven.javadoc.skip>true</maven.javadoc.skip>
</properties>
diff --git a/org.jacoco.build/pom.xml b/org.jacoco.build/pom.xml
index 0b302f76..88a11f2a 100644
--- a/org.jacoco.build/pom.xml
+++ b/org.jacoco.build/pom.xml
@@ -316,11 +316,6 @@
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jarsigner-plugin</artifactId>
- <version>1.4</version>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.8</version>
<configuration>
@@ -726,31 +721,6 @@
</profile>
<profile>
- <id>sign</id>
- <activation>
- <property>
- <name>jarsigner.alias</name>
- </property>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jarsigner-plugin</artifactId>
- <executions>
- <execution>
- <id>sign</id>
- <goals>
- <goal>sign</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
-
- <profile>
<id>manifest</id>
<activation>
<file>
@@ -857,12 +827,6 @@
</goals>
<configuration>
<rules>
- <!--
- <requireActiveProfile>
- <message>You must sign JARs during release.</message>
- <profiles>sign</profiles>
- </requireActiveProfile>
- -->
<requireReleaseVersion/>
<requireProperty>
<property>buildNumber</property>
diff --git a/org.jacoco.doc/docroot/doc/changes.html b/org.jacoco.doc/docroot/doc/changes.html
index 0ee9e676..d41ef999 100644
--- a/org.jacoco.doc/docroot/doc/changes.html
+++ b/org.jacoco.doc/docroot/doc/changes.html
@@ -48,6 +48,13 @@
(GitHub <a href="https://github.com/jacoco/jacoco/issues/427">#427</a>).</li>
</ul>
+<h3>Non-functional Changes</h3>
+<ul>
+ <li>Released JaCoCo JARs are not signed any more. Signed versions of JaCoCo are
+ now available from the Eclipse Orbit project
+ (GitHub <a href="https://github.com/jacoco/jacoco/issues/466">#466</a>).</li>
+</ul>
+
<h2>Release 0.7.7 (2016/06/06)</h2>
<h3>New Features</h3>