gnu: Add java-weld-parent-pom.

* gnu/packages/maven-parent-pom.scm (java-weld-parent-pom): New
variable.
This commit is contained in:
Julien Lepiller 2020-06-27 14:32:34 +02:00
parent 40448a0236
commit 16466a5d7f
No known key found for this signature in database
GPG key ID: 53D457B2D636EE82

View file

@ -131,3 +131,30 @@ (define-public apache-commons-parent-pom-50
(make-apache-commons-parent-pom
"50" "0ki8px35dan51ashblpw6rdl27c2fq62slazhslhq3lr4fwlpvxs"
apache-parent-pom-21))
(define-public java-weld-parent-pom
(hidden-package
(package
(name "java-weld-parent-pom")
(version "36")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/weld/parent")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"0rbvizcsma456mw9fvp4dj9cljh97nswvhi04xhczi38j5bgal0m"))))
(build-system ant-build-system)
(arguments
`(#:tests? #f
#:phases
(modify-phases %standard-phases
(delete 'build)
(replace 'install
(install-pom-file "pom.xml")))))
(home-page "https://github.com/weld/parent")
(synopsis "Pom parent file for weld projects")
(description "This package contains the parent Maven Pom for weld projects.")
(license license:asl2.0))))