From: Julien Lepiller <julien@lepiller.eu>
To: 31631@debbugs.gnu.org
Subject: [bug#31631] [PATCH 09/10] gnu: Add maven-shared-utils.
Date: Mon, 28 May 2018 22:55:35 +0200 [thread overview]
Message-ID: <20180528205536.31403-9-julien@lepiller.eu> (raw)
In-Reply-To: <20180528205536.31403-1-julien@lepiller.eu>
gnu/packages/maven.scm (maven-shared-utils): New variable.
---
gnu/packages/maven.scm | 41 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 41 insertions(+)
diff --git a/gnu/packages/maven.scm b/gnu/packages/maven.scm
index fe9554146..f2ef42901 100644
--- a/gnu/packages/maven.scm
+++ b/gnu/packages/maven.scm
@@ -23,6 +23,7 @@
#:use-module (guix utils)
#:use-module (guix build-system ant)
#:use-module (gnu packages)
+ #:use-module (gnu packages compression)
#:use-module (gnu packages java))
(define-public maven-resolver-api
@@ -189,6 +190,46 @@ for repositories using URI-based layouts.")))
("java-hamcrest-core" ,java-hamcrest-core)
("maven-resolver-test-util" ,maven-resolver-test-util)))))
+(define-public maven-shared-utils
+ (package
+ (name "maven-shared-utils")
+ (version "3.2.1")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "https://archive.apache.org/dist/maven/shared/"
+ "maven-shared-utils-" version "-source-release.zip"))
+ (sha256
+ (base32
+ "1kzmj68wwdcznb36hm6kfz57wbavw7g1rp236pz10znkjljn6rf6"))))
+ (build-system ant-build-system)
+ (arguments
+ `(#:jar-name "maven-shared-utils.jar"
+ #:source-dir "src/main/java"
+ #:jdk ,icedtea-8
+ #:phases
+ (modify-phases %standard-phases
+ (add-before 'check 'remove-cyclic-dep
+ (lambda _
+ (delete-file
+ "src/test/java/org/apache/maven/shared/utils/introspection/ReflectionValueExtractorTest.java")
+ #t)))))
+ (inputs
+ `(("java-jansi" ,java-jansi)
+ ("java-commons-io" ,java-commons-io)
+ ("java-jsr305" ,java-jsr305)
+ ("java-plexus-container-default" ,java-plexus-container-default)))
+ (native-inputs
+ `(("unzip" ,unzip)
+ ("java-junit" ,java-junit)
+ ("java-hamcrest-core" ,java-hamcrest-core)
+ ("java-commons-lang3" ,java-commons-lang3)))
+ (home-page "https://maven.apache.org/shared/maven-shared-utils/")
+ (synopsis "Plexus-util replacement for maven")
+ (description "This project aims to be a functional replacement for
+plexus-utils in Maven. It is not a 100% API compatible replacement but a
+replacement with improvements.")
+ (license license:asl2.0)))
+
(define-public maven-artifact
(package
(name "maven-artifact")
--
2.17.0
next prev parent reply other threads:[~2018-05-28 20:56 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-05-28 20:49 [bug#31631] [PATCH] Some maven packages Julien Lepiller
2018-05-28 20:55 ` [bug#31631] [PATCH 01/10] gnu: Add maven-artifact Julien Lepiller
2018-05-28 20:55 ` [bug#31631] [PATCH 02/10] gnu: Add maven-model Julien Lepiller
2018-05-28 20:55 ` [bug#31631] [PATCH 03/10] gnu: Add maven-builder-support Julien Lepiller
2018-05-28 20:55 ` [bug#31631] [PATCH 04/10] gnu: Add maven-settings Julien Lepiller
2018-05-28 20:55 ` [bug#31631] [PATCH 05/10] gnu: Add maven-settings-builder Julien Lepiller
2018-05-28 20:55 ` [bug#31631] [PATCH 06/10] gnu: Add maven-model-builder Julien Lepiller
2018-05-28 20:55 ` [bug#31631] [PATCH 07/10] gnu: Add maven-resolver-impl Julien Lepiller
2018-05-28 20:55 ` [bug#31631] [PATCH 08/10] gnu: Add maven-repository-metadata Julien Lepiller
2018-05-28 20:55 ` Julien Lepiller [this message]
2018-05-28 20:55 ` [bug#31631] [PATCH 10/10] gnu: Add maven-resolver-provider Julien Lepiller
2018-06-09 21:27 ` bug#31631: [PATCH] Some maven packages Julien Lepiller
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20180528205536.31403-9-julien@lepiller.eu \
--to=julien@lepiller.eu \
--cc=31631@debbugs.gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.