[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
88/110: gnu: maven-plugin-annotations: Install from pom file.
From: |
guix-commits |
Subject: |
88/110: gnu: maven-plugin-annotations: Install from pom file. |
Date: |
Thu, 16 Jul 2020 22:23:36 -0400 (EDT) |
roptat pushed a commit to branch master
in repository guix.
commit f738576086fbe474477c06fd6be8ac73f3148336
Author: Julien Lepiller <julien@lepiller.eu>
AuthorDate: Sat Jun 27 23:04:47 2020 +0200
gnu: maven-plugin-annotations: Install from pom file.
* gnu/packages/maven.scm (maven-plugin-annotations): Install from pom
file.
---
gnu/packages/maven.scm | 25 ++++++++++++++++++++++---
1 file changed, 22 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/maven.scm b/gnu/packages/maven.scm
index 9940558..126e077 100644
--- a/gnu/packages/maven.scm
+++ b/gnu/packages/maven.scm
@@ -661,9 +661,14 @@ replacement with improvements.")
(arguments
`(#:jar-name "maven-plugin-annotations.jar"
#:source-dir "maven-plugin-annotations/src/main/java"
- #:tests? #f))
- (inputs
- `(("maven-artifact" ,maven-artifact)))
+ #:tests? #f
+ #:phases
+ (modify-phases %standard-phases
+ (replace 'install
+ (install-from-pom "maven-plugin-annotations/pom.xml")))))
+ (propagated-inputs
+ `(("maven-artifact" ,maven-artifact)
+ ("maven-plugin-tools-parent-pom" ,maven-plugin-tools-parent-pom)))
(native-inputs
`(("unzip" ,unzip)))
(home-page
"https://maven.apache.org/plugin-tools/maven-plugin-annotations/")
@@ -671,6 +676,20 @@ replacement with improvements.")
(description "This package contains Java 5 annotations for use in Mojos.")
(license license:asl2.0)))
+(define maven-plugin-tools-parent-pom
+ (package
+ (inherit maven-plugin-annotations)
+ (name "maven-plugin-tools-parent-pom")
+ (arguments
+ `(#:tests? #f
+ #:phases
+ (modify-phases %standard-phases
+ (delete 'configure)
+ (delete 'build)
+ (replace 'install
+ (install-pom-file "pom.xml")))))
+ (propagated-inputs '())))
+
(define-public maven-wagon-provider-api
(package
(name "maven-wagon-provider-api")
- 100/110: gnu: Add java-surefire-api., (continued)
- 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, 2020/07/16
- 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 <=
- 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
- 102/110: gnu: Add java-surefire-extensions-api., guix-commits, 2020/07/16
- 103/110: gnu: Add java-surefire-common-java5., guix-commits, 2020/07/16
- 105/110: gnu: Add java-surefire-common-junit4., guix-commits, 2020/07/16
- 106/110: gnu: Add java-surefire-junit4., guix-commits, 2020/07/16
- 107/110: gnu: Add maven-surefire-common., guix-commits, 2020/07/16
- 60/110: gnu: Add java-sonatype-aether-test-util., guix-commits, 2020/07/16