Skip to content

Commit 37ace2e

Browse files
authored
Merge pull request #351 from hboutemy/SHIRO-872
SHIRO-872 fix Reproducible Builds issues
2 parents 81d7af6 + b512984 commit 37ace2e

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,11 @@
3434
bin/
3535
target/
3636

37+
#
38+
# VS Code
39+
#
40+
.factorypath
41+
3742
#
3843
# Maven release metadata
3944
#

pom.xml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@
6969
<shiro.previousVersion>1.7.1</shiro.previousVersion>
7070
<!-- Replaced by the build number plugin at build time: -->
7171
<buildNumber>${user.name}-${maven.build.timestamp}</buildNumber>
72+
<project.build.outputTimestamp>2022-03-22T23:08:15Z</project.build.outputTimestamp>
7273
<jacoco.skip>true</jacoco.skip>
7374
<nexus.deploy.skip>false</nexus.deploy.skip>
7475

@@ -289,12 +290,12 @@
289290
<plugin>
290291
<groupId>org.apache.maven.plugins</groupId>
291292
<artifactId>maven-war-plugin</artifactId>
292-
<version>3.2.2</version>
293+
<version>3.3.2</version>
293294
</plugin>
294295
<plugin>
295296
<groupId>org.apache.felix</groupId>
296297
<artifactId>maven-bundle-plugin</artifactId>
297-
<version>4.2.0</version>
298+
<version>5.1.4</version>
298299
</plugin>
299300
<plugin>
300301
<groupId>org.apache.maven.plugins</groupId>
@@ -534,18 +535,13 @@
534535
<plugin>
535536
<groupId>org.apache.maven.plugins</groupId>
536537
<artifactId>maven-jar-plugin</artifactId>
537-
<version>3.1.1</version>
538+
<version>3.2.2</version>
538539
<configuration>
539540
<archive>
540541
<manifest>
541542
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
542543
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
543544
</manifest>
544-
<manifestEntries>
545-
<!--suppress MavenModelInspection -->
546-
<SCM-Revision>${buildNumber}</SCM-Revision>
547-
<SCM-url>${project.scm.url}</SCM-url>
548-
</manifestEntries>
549545
</archive>
550546
</configuration>
551547
</plugin>
@@ -599,7 +595,7 @@
599595
<plugin>
600596
<groupId>org.apache.maven.plugins</groupId>
601597
<artifactId>maven-release-plugin</artifactId>
602-
<version>2.5.3</version>
598+
<version>3.0.0-M5</version>
603599
<configuration>
604600
<!-- do not update upstream, with a pending release. -->
605601
<pushChanges>false</pushChanges>

0 commit comments

Comments
 (0)