Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (3)
Fixed the compatibility with Maven 3.6.2 (Closes: #941211)
· 5334eda2
Emmanuel Bourg
authored
Sep 27, 2019
5334eda2
Standards-Version updated to 4.4.0
· dfe51a99
Emmanuel Bourg
authored
Sep 27, 2019
dfe51a99
Upload to unstable
· 4c9a97f9
Emmanuel Bourg
authored
Sep 27, 2019
4c9a97f9
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
4c9a97f9
aether-ant-tasks (1.0.1-5)
UNRELEASED
; urgency=medium
aether-ant-tasks (1.0.1-5)
unstable
; urgency=medium
* Team upload.
[ Emmanuel Bourg ]
* Fixed the compatibility with Maven 3.6.2 (Closes: #941211)
* Standards-Version updated to 4.4.0
[ Andrius Merkys ]
* Fixing the URL in VCS-* fields.
--
Andrius Merkys <merkys@debian
.org> Fri, 27 Sep 2019
01:39:17 -04
00
--
Emmanuel Bourg <ebourg@apache
.org> Fri, 27 Sep 2019
10:42:03 +02
00
aether-ant-tasks (1.0.1-4) unstable; urgency=medium
...
...
debian/control
View file @
4c9a97f9
...
...
@@ -10,14 +10,14 @@ Build-Depends:
libmaven-resolver-java,
libmaven-resolver-transport-http-java,
libmaven-shade-plugin-java (>= 3.1.0),
libmaven3-core-java (>= 3.
5.0
),
libmaven3-core-java (>= 3.
6.2
),
libplexus-component-annotations-java (>= 1.7.1-6~),
libplexus-container-default-java (>= 1.7.1-7~),
libplexus-interpolation-java (>= 1.16),
libsisu-plexus-java (>= 0.1.1),
libslf4j-java,
maven-debian-helper (>= 2.2)
Standards-Version: 4.
2.1
Standards-Version: 4.
4.0
Vcs-Browser: https://salsa.debian.org/java-team/aether-ant-tasks
Vcs-Git: https://salsa.debian.org/java-team/aether-ant-tasks.git
Homepage: http://www.eclipse.org/aether/
...
...
debian/patches/01-maven-compatibility.patch
View file @
4c9a97f9
...
...
@@ -37,3 +37,25 @@ Forwarded: no
+ addRepository( repository );
+ }
}
--- a/src/main/java/org/eclipse/aether/internal/ant/AntSettingsDecryptorFactory.java
+++ b/src/main/java/org/eclipse/aether/internal/ant/AntSettingsDecryptorFactory.java
@@ -23,18 +23,7 @@
{
AntSecDispatcher secDispatcher = new AntSecDispatcher();
- DefaultSettingsDecrypter decrypter = new DefaultSettingsDecrypter();
-
- try
- {
- Field field = decrypter.getClass().getDeclaredField( "securityDispatcher" );
- field.setAccessible( true );
- field.set( decrypter, secDispatcher );
- }
- catch ( Exception e )
- {
- throw new IllegalStateException( e );
- }
+ DefaultSettingsDecrypter decrypter = new DefaultSettingsDecrypter(secDispatcher);
return decrypter;
}