You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shiro.apache.org by fp...@apache.org on 2022/04/01 09:01:35 UTC

[shiro] branch 1.9.x updated: [SHIRO-872] fix Reproducible Builds issues

This is an automated email from the ASF dual-hosted git repository.

fpapon pushed a commit to branch 1.9.x
in repository https://gitbox.apache.org/repos/asf/shiro.git


The following commit(s) were added to refs/heads/1.9.x by this push:
     new b512984  [SHIRO-872] fix Reproducible Builds issues
     new 37ace2e  Merge pull request #351 from hboutemy/SHIRO-872
b512984 is described below

commit b512984a84d1f4abcd1b74191c6ef5b5774861db
Author: Hervé Boutemy <hb...@apache.org>
AuthorDate: Wed Mar 23 08:12:28 2022 +0100

    [SHIRO-872] fix Reproducible Builds issues
---
 .gitignore |  5 +++++
 pom.xml    | 14 +++++---------
 2 files changed, 10 insertions(+), 9 deletions(-)

diff --git a/.gitignore b/.gitignore
index dc39926..0b6b638 100644
--- a/.gitignore
+++ b/.gitignore
@@ -35,6 +35,11 @@ bin/
 target/
 
 #
+# VS Code
+#
+.factorypath
+
+#
 # Maven release metadata
 #
 release.properties
diff --git a/pom.xml b/pom.xml
index 87300d9..54b5a8e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -69,6 +69,7 @@
         <shiro.previousVersion>1.7.1</shiro.previousVersion>
         <!-- Replaced by the build number plugin at build time: -->
         <buildNumber>${user.name}-${maven.build.timestamp}</buildNumber>
+        <project.build.outputTimestamp>2022-03-22T23:08:15Z</project.build.outputTimestamp>
         <jacoco.skip>true</jacoco.skip>
         <nexus.deploy.skip>false</nexus.deploy.skip>
 
@@ -289,12 +290,12 @@
                 <plugin>
                     <groupId>org.apache.maven.plugins</groupId>
                     <artifactId>maven-war-plugin</artifactId>
-                    <version>3.2.2</version>
+                    <version>3.3.2</version>
                 </plugin>
                 <plugin>
                     <groupId>org.apache.felix</groupId>
                     <artifactId>maven-bundle-plugin</artifactId>
-                    <version>4.2.0</version>
+                    <version>5.1.4</version>
                 </plugin>
                 <plugin>
                     <groupId>org.apache.maven.plugins</groupId>
@@ -534,18 +535,13 @@
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-jar-plugin</artifactId>
-                <version>3.1.1</version>
+                <version>3.2.2</version>
                 <configuration>
                     <archive>
                         <manifest>
                             <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
                             <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
                         </manifest>
-                        <manifestEntries>
-                            <!--suppress MavenModelInspection -->
-                            <SCM-Revision>${buildNumber}</SCM-Revision>
-                            <SCM-url>${project.scm.url}</SCM-url>
-                        </manifestEntries>
                     </archive>
                 </configuration>
             </plugin>
@@ -599,7 +595,7 @@
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-release-plugin</artifactId>
-                <version>2.5.3</version>
+                <version>3.0.0-M5</version>
                 <configuration>
                     <!-- do not update upstream, with a pending release. -->
                     <pushChanges>false</pushChanges>