Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
Guix
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ogs
inf
Guix
Commits
66006fe5
Unverified
Commit
66006fe5
authored
6 years ago
by
Julien Lepiller
Browse files
Options
Downloads
Patches
Plain Diff
gnu: Add java-commons-jxpath.
* gnu/packages/java.scm (java-commons-jxpath): New variable.
parent
7049dea1
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gnu/packages/java.scm
+31
-0
31 additions, 0 deletions
gnu/packages/java.scm
with
31 additions
and
0 deletions
gnu/packages/java.scm
+
31
−
0
View file @
66006fe5
...
...
@@ -4263,6 +4263,37 @@ (define-public java-commons-bsf
these scripting language engines."
)
(
license
license:asl2
.
0
)))
(
define-public
java-commons-jxpath
(
package
(
name
"java-commons-jxpath"
)
(
version
"1.3"
)
(
source
(
origin
(
method
url-fetch
)
(
uri
(
string-append
"mirror://apache/commons/jxpath/source/"
"commons-jxpath-"
version
"-src.tar.gz"
))
(
sha256
(
base32
"1rpgg31ayn9fwr4bfi2i1ij0npcg79ad2fv0w9hacvawsyc42cfs"
))))
(
build-system
ant-build-system
)
(
arguments
`
(
#
:jar-name
"commons-jxpath.jar"
;; tests require more dependencies, including mockrunner which depends on old software
#
:tests?
#f
#
:source-dir
"src/java"
))
(
inputs
`
((
"java-tomcat"
,
java-tomcat
)
(
"java-jdom"
,
java-jdom
)
(
"java-commons-beanutils"
,
java-commons-beanutils
)))
(
native-inputs
`
((
"java-junit"
,
java-junit
)))
(
home-page
"http://commons.apache.org/jxpath/"
)
(
synopsis
"Simple interpreter of an expression language called XPath."
)
(
description
"The org.apache.commons.jxpath package defines a simple
interpreter of an expression language called XPath. JXPath applies XPath
expressions to graphs of objects of all kinds: JavaBeans, Maps, Servlet
contexts, DOM etc, including mixtures thereof."
)
(
license
license:asl2
.
0
)))
(
define-public
java-jsr250
(
package
(
name
"java-jsr250"
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment