Skip to content

Latest commit

 

History

History
15 lines (8 loc) · 287 Bytes

README.md

File metadata and controls

15 lines (8 loc) · 287 Bytes

xpath-service

Provides XPath and Stylesheet features for Hudson and Jelly (which no longer contain Jaxen).

Converting dom4j XPath-related calls to XPath service is usually trivial, e.g.,

doc.selectNodes(pathExpr)

becomes

new XPath(pathExpr).selectNodes(doc)