forked from pool/maven-archiver
Compare commits
18 Commits
Author | SHA256 | Date | |
---|---|---|---|
02df442efa | |||
8b1dfd76c5 | |||
ed5b97c15e | |||
faf802e726 | |||
990b5eac1a | |||
82be6853a6 | |||
965a2103dc | |||
a63287332f | |||
8357f71b5f | |||
9a5f609688 | |||
cbde43e471 | |||
5da9d2beef | |||
dadbd2c225 | |||
1fb345de68 | |||
b1c672a73a | |||
67fd2cd473 | |||
0d3f944895 | |||
0d50e5e1a4 |
BIN
maven-archiver-3.6.1-source-release.zip
(Stored with Git LFS)
BIN
maven-archiver-3.6.1-source-release.zip
(Stored with Git LFS)
Binary file not shown.
3
maven-archiver-3.6.4-source-release.zip
Normal file
3
maven-archiver-3.6.4-source-release.zip
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:13d00449ed9d8793d1ac372243c41b2fc5f97c0e66e46a3fa4c9743e4fd098f1
|
||||||
|
size 134684
|
@@ -10,13 +10,14 @@
|
|||||||
|
|
||||||
<property name="project.groupId" value="org.apache.maven"/>
|
<property name="project.groupId" value="org.apache.maven"/>
|
||||||
<property name="project.artifactId" value="maven-archiver"/>
|
<property name="project.artifactId" value="maven-archiver"/>
|
||||||
<property name="project.version" value="3.6.1"/>
|
<property name="project.version" value="3.6.4"/>
|
||||||
<property name="project.name" value="Apache Maven Archiver"/>
|
<property name="project.name" value="Apache Maven Archiver"/>
|
||||||
<property name="project.organization.name" value="The Apache Software Foundation"/>
|
<property name="project.organization.name" value="The Apache Software Foundation"/>
|
||||||
|
|
||||||
<property name="spec.version" value="3.6"/>
|
<property name="spec.version" value="3.6"/>
|
||||||
|
|
||||||
<property name="compiler.source" value="1.8"/>
|
<property name="compiler.release" value="8"/>
|
||||||
|
<property name="compiler.source" value="1.${compiler.release}"/>
|
||||||
<property name="compiler.target" value="${compiler.source}"/>
|
<property name="compiler.target" value="${compiler.source}"/>
|
||||||
|
|
||||||
<property name="build.finalName" value="${project.artifactId}-${project.version}"/>
|
<property name="build.finalName" value="${project.artifactId}-${project.version}"/>
|
||||||
@@ -56,6 +57,7 @@
|
|||||||
debug="true"
|
debug="true"
|
||||||
optimize="false"
|
optimize="false"
|
||||||
deprecation="true"
|
deprecation="true"
|
||||||
|
release="${compiler.release}"
|
||||||
target="${compiler.target}"
|
target="${compiler.target}"
|
||||||
verbose="false"
|
verbose="false"
|
||||||
fork="false"
|
fork="false"
|
||||||
|
@@ -1,3 +1,72 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Aug 11 07:33:16 UTC 2025 - Fridrich Strba <fstrba@suse.com>
|
||||||
|
|
||||||
|
- Upgrade to maven-archiver 3.6.4
|
||||||
|
* New features and improvements
|
||||||
|
+ improve Reproducible Builds javadoc
|
||||||
|
+ Fall back on SOURCE_DATE_EPOCH if it exists
|
||||||
|
* Bug Fixes
|
||||||
|
+ Treat empty Automatic-Module-Name as no Automatic-Module-Name
|
||||||
|
at all
|
||||||
|
* Maintenance
|
||||||
|
+ Enable GitHub Issues
|
||||||
|
* Dependency updates
|
||||||
|
+ Bump org.apache.maven.shared:maven-shared-components
|
||||||
|
from 43 to 45
|
||||||
|
+ Bump org.codehaus.plexus:plexus-interpolation
|
||||||
|
from 1.27 to 1.28
|
||||||
|
+ Bump org.assertj:assertj-core from 3.26.0 to 3.27.3
|
||||||
|
- Removed patches:
|
||||||
|
* automatic-module-name.patch
|
||||||
|
* reproducible-from-environment.patch
|
||||||
|
+ integrated in this version
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jul 25 07:15:18 UTC 2025 - Fridrich Strba <fstrba@suse.com>
|
||||||
|
|
||||||
|
- Modified patch:
|
||||||
|
* reproducible-from-environment.patch
|
||||||
|
+ rediff to include a follow-up PR
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jul 24 09:24:28 UTC 2025 - Fridrich Strba <fstrba@suse.com>
|
||||||
|
|
||||||
|
- Modified patch:
|
||||||
|
* automatic-module-name.patch
|
||||||
|
* reproducible-from-environment.patch
|
||||||
|
+ rediff with our accepted pull requests
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jul 21 10:30:59 UTC 2025 - Fridrich Strba <fstrba@suse.com>
|
||||||
|
|
||||||
|
- Modified patch:
|
||||||
|
* automatic-module-name.patch
|
||||||
|
+ rebase and add unit test
|
||||||
|
- Added patch:
|
||||||
|
* reproducible-from-environment.patch
|
||||||
|
+ if the outputTimestamp variable is not specified, use the
|
||||||
|
environmental varialble SOURCE_DATE_EPOCH if it is set.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jun 6 14:33:31 UTC 2025 - Fridrich Strba <fstrba@suse.com>
|
||||||
|
|
||||||
|
- Added patch:
|
||||||
|
* automatic-module-name.patch
|
||||||
|
+ Do not throw exception on empty Automatic-Module-Name. Just
|
||||||
|
ignore it.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 29 18:24:29 UTC 2024 - Fridrich Strba <fstrba@suse.com>
|
||||||
|
|
||||||
|
- Upgrade to maven-archiver 3.6.3
|
||||||
|
* Bug
|
||||||
|
+ MSHARED-1445: Unix timestamps since the epoch are not subject
|
||||||
|
to the boundary checks
|
||||||
|
* Task
|
||||||
|
+ MSHARED-1367: Improvement in unit tests
|
||||||
|
+ MSHARED-1446: Add docs about repro build output timestamp
|
||||||
|
boundaries
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Sep 6 14:03:52 UTC 2023 - Fridrich Strba <fstrba@suse.com>
|
Wed Sep 6 14:03:52 UTC 2023 - Fridrich Strba <fstrba@suse.com>
|
||||||
|
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package maven-archiver
|
# spec file for package maven-archiver
|
||||||
#
|
#
|
||||||
# Copyright (c) 2023 SUSE LLC
|
# Copyright (c) 2025 SUSE LLC and contributors
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -18,7 +18,7 @@
|
|||||||
|
|
||||||
%bcond_with tests
|
%bcond_with tests
|
||||||
Name: maven-archiver
|
Name: maven-archiver
|
||||||
Version: 3.6.1
|
Version: 3.6.4
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Maven Archiver
|
Summary: Maven Archiver
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
@@ -58,15 +58,15 @@ cp %{SOURCE1} build.xml
|
|||||||
%build
|
%build
|
||||||
mkdir -p lib
|
mkdir -p lib
|
||||||
build-jar-repository -s lib \
|
build-jar-repository -s lib \
|
||||||
org.eclipse.sisu.plexus \
|
maven/maven-artifact \
|
||||||
maven-shared-utils/maven-shared-utils \
|
maven/maven-core \
|
||||||
maven/maven-artifact maven/maven-core \
|
|
||||||
maven/maven-model \
|
maven/maven-model \
|
||||||
plexus/interpolation \
|
maven-shared-utils/maven-shared-utils \
|
||||||
plexus/archiver
|
org.eclipse.sisu.plexus \
|
||||||
|
plexus/archiver \
|
||||||
|
plexus/interpolation
|
||||||
|
|
||||||
%{ant} \
|
ant jar javadoc
|
||||||
jar javadoc
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
# jar
|
# jar
|
||||||
|
Reference in New Issue
Block a user