mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-01 23:36:35 +01:00
gnu: java-jsr250: Use proper source.
Sources from maven.org are autogenerated, not actual sources. * gnu/packages/java.scm (java-jsr250)[source]: Use git repository. * gnu/packages/maven.scm (maven-embedder): Fix pom to use it.
This commit is contained in:
parent
137a7af178
commit
89bc233f3e
2 changed files with 11 additions and 9 deletions
|
@ -6241,14 +6241,14 @@ (define-public java-jsr250
|
|||
(name "java-jsr250")
|
||||
(version "1.3")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://repo1.maven.org/maven2/"
|
||||
"javax/annotation/javax.annotation-api/"
|
||||
version "/javax.annotation-api-"
|
||||
version "-sources.jar"))
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/javaee/javax.annotation")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"08clh8n4n9wfglf75qsqfjs6yf79f7x6hqx38cn856pksszv50kz"))))
|
||||
"1g22a9d75g01s9yxgdig0ss7i30j4ysnnp08gn4krn0wly4lpqq0"))))
|
||||
(build-system ant-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ; no tests included
|
||||
|
@ -6256,11 +6256,9 @@ (define-public java-jsr250
|
|||
#:jar-name "jsr250.jar"
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-before 'install 'create-pom
|
||||
(generate-pom.xml "pom.xml" "javax.annotation" "jsr250-api" ,version
|
||||
#:name "jsr250"))
|
||||
(replace 'install
|
||||
(install-from-pom "pom.xml")))))
|
||||
(propagated-inputs (list java-jvnet-parent-pom-3))
|
||||
(home-page "https://jcp.org/en/jsr/detail?id=250")
|
||||
(synopsis "Security-related annotations")
|
||||
(description "This package provides annotations for security. It provides
|
||||
|
|
|
@ -1740,6 +1740,10 @@ (define (modello-single-mode file version mode)
|
|||
(("srcdir=\"maven-embedder/src/test\"")
|
||||
"srcdir=\"maven-embedder/src/test/java\""))
|
||||
#t))
|
||||
(add-before 'install 'fix-pom
|
||||
(lambda _
|
||||
(substitute* "maven-embedder/pom.xml"
|
||||
(("jsr250-api") "javax.annotation-api"))))
|
||||
(replace 'install
|
||||
(install-from-pom "maven-embedder/pom.xml")))))
|
||||
(propagated-inputs
|
||||
|
|
Loading…
Reference in a new issue