[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
09/26: gnu: java-plexus-cipher: Update to 2.0.
From: |
guix-commits |
Subject: |
09/26: gnu: java-plexus-cipher: Update to 2.0. |
Date: |
Sat, 5 Feb 2022 14:18:57 -0500 (EST) |
roptat pushed a commit to branch master
in repository guix.
commit ba7026003cb782017179f8a79c49a8e226f87e54
Author: Julien Lepiller <julien@lepiller.eu>
AuthorDate: Sun Dec 19 23:37:31 2021 +0100
gnu: java-plexus-cipher: Update to 2.0.
* gnu/packages/java.scm (java-plexus-cipher): Update to 2.0.
(java-plexus-cipher-1.7): New variable.
---
gnu/packages/java.scm | 58 +++++++++++++++++++++++++++++++++++++++------------
1 file changed, 45 insertions(+), 13 deletions(-)
diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm
index 2b169854d8..64d40b3ce9 100644
--- a/gnu/packages/java.scm
+++ b/gnu/packages/java.scm
@@ -4377,7 +4377,7 @@ provides the Maven plugin generating the component
metadata.")))
(define-public java-plexus-cipher
(package
(name "java-plexus-cipher")
- (version "1.7")
+ (version "2.0")
(source (origin
(method git-fetch)
(uri (git-reference
@@ -4386,8 +4386,49 @@ provides the Maven plugin generating the component
metadata.")))
(file-name (git-file-name name version))
(sha256
(base32
- "0m638nzlxbmnbcj5cwdpgs326ab584yv0k803zlx37r6iqwvf6b0"))))
+ "01fipdsm090n8j4207fl8kbxznkgkmkkgyazf53hm1nwn6na5aai"))))
(build-system ant-build-system)
+ (arguments
+ `(#:jar-name "plexus-cipher.jar"
+ #:source-dir "src/main/java"
+ #:phases
+ (modify-phases %standard-phases
+ (add-before 'build 'generate-javax.inject.Named
+ (lambda _
+ (mkdir-p "build/classes/META-INF/sisu")
+ (with-output-to-file
"build/classes/META-INF/sisu/javax.inject.Named"
+ (lambda _
+ (display
+
"org.sonatype.plexus.components.cipher.DefaultPlexusCipher\n")))
+ #t))
+ (replace 'install (install-from-pom "pom.xml")))))
+ (inputs
+ `(("java-cdi-api" ,java-cdi-api)
+ ("java-javax-inject" ,java-javax-inject)))
+ (propagated-inputs
+ `(("java-sonatype-spice-parent-pom" ,java-sonatype-spice-parent-pom-15)
+ ("java-eclipse-sisu-inject" ,java-eclipse-sisu-inject)))
+ (native-inputs
+ `(("java-junit" ,java-junit)))
+ (home-page "https://github.com/sonatype/plexus-cipher")
+ (synopsis "Encryption/decryption Component")
+ (description "Plexus-cipher contains a component to deal with encryption
+and decryption.")
+ (license license:asl2.0)))
+
+(define-public java-plexus-cipher-1.7
+ (package
+ (inherit java-plexus-cipher)
+ (version "1.7")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/codehaus-plexus/plexus-cipher")
+ (commit (string-append "plexus-cipher-" version))))
+ (file-name (git-file-name "java-plexus-cipher" version))
+ (sha256
+ (base32
+ "0m638nzlxbmnbcj5cwdpgs326ab584yv0k803zlx37r6iqwvf6b0"))))
(arguments
`(#:jar-name "plexus-cipher.jar"
#:source-dir "src/main/java"
@@ -4409,17 +4450,8 @@ provides the Maven plugin generating the component
metadata.")))
(("provided") "test"))
#t))
(replace 'install (install-from-pom "pom.xml")))))
- (inputs
- (list java-cdi-api java-javax-inject))
(propagated-inputs
- (list java-sonatype-spice-parent-pom-15))
- (native-inputs
- (list java-junit))
- (home-page "https://github.com/sonatype/plexus-cipher")
- (synopsis "Encryption/decryption Component")
- (description "Plexus-cipher contains a component to deal with encryption
-and decryption.")
- (license license:asl2.0)))
+ (list java-sonatype-spice-parent-pom-15))))
(define-public java-plexus-java
(package
@@ -4766,7 +4798,7 @@ function utilities.")
#t))
(replace 'install (install-from-pom "pom.xml")))))
(propagated-inputs
- (list java-plexus-utils java-plexus-cipher
+ (list java-plexus-utils java-plexus-cipher-1.7
java-sonatype-spice-parent-pom-12))
(native-inputs
`(("java-modello-core" ,java-modello-core)
- 05/26: gnu: maven-parent-pom: Fix dependency versions., (continued)
- 05/26: gnu: maven-parent-pom: Fix dependency versions., guix-commits, 2022/02/05
- 23/26: gnu: maven-enforcer-api: Update to 3.0.0., guix-commits, 2022/02/05
- 24/26: gnu: maven-wagon-provider-api: Update to 3.4.3., guix-commits, 2022/02/05
- 02/26: gnu: Add apache-commons-parent-pom-52., guix-commits, 2022/02/05
- 17/26: gnu: Add java-sonatype-aether-api-1.13., guix-commits, 2022/02/05
- 19/26: gnu: Add java-sonatype-aether-test-util-1.13., guix-commits, 2022/02/05
- 21/26: gnu: maven-dependency-tree: Update to 3.1.0., guix-commits, 2022/02/05
- 22/26: guix: maven: Fix java parser., guix-commits, 2022/02/05
- 14/26: gnu: java-eclipse-sisu-plexus: Update to 0.3.5., guix-commits, 2022/02/05
- 07/26: gnu: java-plexus-utils: Default to the newer one., guix-commits, 2022/02/05
- 09/26: gnu: java-plexus-cipher: Update to 2.0.,
guix-commits <=
- 11/26: gnu: Add java-jvnet-parent-pom-3., guix-commits, 2022/02/05
- 25/26: gnu: Update maven-artifact-transfer to 0.13.1., guix-commits, 2022/02/05
- 18/26: gnu: Add java-sonatype-aether-spi-1.13., guix-commits, 2022/02/05
- 26/26: gnu: maven: Update to 3.8.4., guix-commits, 2022/02/05