[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
82/110: gnu: Add maven-dependency-tree.
From: |
guix-commits |
Subject: |
82/110: gnu: Add maven-dependency-tree. |
Date: |
Thu, 16 Jul 2020 22:23:34 -0400 (EDT) |
roptat pushed a commit to branch master
in repository guix.
commit 24bdd1504eba3f10b144c53738bdbde5f678b9b9
Author: Julien Lepiller <julien@lepiller.eu>
AuthorDate: Sat Jun 27 17:22:08 2020 +0200
gnu: Add maven-dependency-tree.
* gnu/packages/maven.scm (maven-dependency-tree): New variable.
---
gnu/packages/maven.scm | 38 ++++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+)
diff --git a/gnu/packages/maven.scm b/gnu/packages/maven.scm
index 6291293..e59e7ae 100644
--- a/gnu/packages/maven.scm
+++ b/gnu/packages/maven.scm
@@ -2568,3 +2568,41 @@ Maven project dependencies.")
(description "This package provides a tree-based API for resolution of
Maven project dependencies.")
(license license:asl2.0)))
+
+(define-public maven-dependency-tree
+ (package
+ (name "maven-dependency-tree")
+ (version "3.0.1")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "mirror://apache/maven/shared/"
+ "maven-dependency-tree-" version
+ "-source-release.zip"))
+ (sha256
+ (base32
+ "0mxfslxvcmjs13jl30zhcg672j970dzn6ihh79w9ajh6sfqmlds2"))))
+ (build-system ant-build-system)
+ (arguments
+ `(#:jar-name "maven-dependency-tree.jar"
+ #:source-dir "src/main/java"
+ #:phases
+ (modify-phases %standard-phases
+ (replace 'install
+ (install-from-pom "pom.xml")))))
+ (propagated-inputs
+ `(("maven-core" ,maven-3.0-core)
+ ("java-plexus-component-annotations" ,java-plexus-component-annotations)
+ ("maven-parent-pom" ,maven-parent-pom-30)))
+ (inputs
+ `(("java-sonatype-aether-api" ,java-sonatype-aether-api)
+ ("java-sonatype-aether-util" ,java-sonatype-aether-util)
+ ("java-eclipse-aether-api" ,java-eclipse-aether-api)
+ ("java-eclipse-aether-util" ,java-eclipse-aether-util)))
+ (native-inputs
+ `(("unzip" ,unzip)
+ ("java-junit" ,java-junit)))
+ (home-page "https://maven.apache.org/shared/maven-dependency-tree")
+ (synopsis "Tree-based API for resolution of Maven project dependencies")
+ (description "This package provides a tree-based API for resolution of
+Maven project dependencies.")
+ (license license:asl2.0)))
- 89/110: gnu: Add maven-install-plugin., (continued)
- 89/110: gnu: Add maven-install-plugin., guix-commits, 2020/07/16
- 95/110: gnu: Add java-plexus-compiler-manager., guix-commits, 2020/07/16
- 96/110: gnu: Add maven-shared-incremental., guix-commits, 2020/07/16
- 87/110: gnu: Add maven-artifact-transfer., guix-commits, 2020/07/16
- 91/110: gnu: Add maven-resources-plugin., guix-commits, 2020/07/16
- 94/110: gnu: add java-plexus-java., guix-commits, 2020/07/16
- 100/110: gnu: Add java-surefire-api., guix-commits, 2020/07/16
- 109/110: gnu: Add maven-jar-plugin., guix-commits, 2020/07/16
- 63/110: gnu: Add java-eclipse-aether-api., guix-commits, 2020/07/16
- 68/110: gnu: maven-3.0-artifact: New variable., guix-commits, 2020/07/16
- 82/110: gnu: Add maven-dependency-tree.,
guix-commits <=
- 99/110: gnu: Add maven-shared-utils-3.1., guix-commits, 2020/07/16
- 110/110: guix: Add maven-build-system., guix-commits, 2020/07/16
- 93/110: gnu: java-plexus-component-metadata: Move to java.scm., guix-commits, 2020/07/16
- 97/110: gnu: Add maven-compiler-plugin., guix-commits, 2020/07/16
- 108/110: gnu: Add maven-surefire-plugin., guix-commits, 2020/07/16
- 88/110: gnu: maven-plugin-annotations: Install from pom file., guix-commits, 2020/07/16
- 90/110: gnu: Add maven-filtering., guix-commits, 2020/07/16
- 92/110: gnu: Add java-qdox-2-M9., guix-commits, 2020/07/16
- 98/110: gnu: Add java-surefire-logger-api., guix-commits, 2020/07/16
- 101/110: gnu: Add java-surefire-booter., guix-commits, 2020/07/16