mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: Add java-weld-parent-pom.
* gnu/packages/maven-parent-pom.scm (java-weld-parent-pom): New variable.
This commit is contained in:
parent
40448a0236
commit
16466a5d7f
1 changed files with 27 additions and 0 deletions
|
@ -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))))
|
||||
|
|
Loading…
Reference in a new issue