xpathapi-jaxp
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>it.svario.xpathapi</groupId> <artifactId>xpathapi-jaxp</artifactId> <version>0.4</version> </dependency>
<?xml version="1.0" encoding="utf-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>it.svario.xpathapi</groupId> <artifactId>xpathapi-jaxp</artifactId> <version>0.4</version> <name>XPathAPI (JAXP)</name> <description>Select XML nodes using XPath and a single line of Java code</description> <inceptionYear>2011</inceptionYear> <url>http://svario.it/xpathapi</url> <scm> <connection>scm:git:git://github.com/gioele/xpathapi-jaxp.git</connection> <developerConnection>scm:git:git@github.com:gioele/xpathapi-jaxp.git</developerConnection> <url>https://github.com/gioele/xpathapi-jaxp</url> </scm> <issueManagement> <url>https://github.com/gioele/xpathapi-jaxp/issues</url> </issueManagement> <developers> <developer> <id>gioele</id> <name>Gioele Barabucci</name> <email>gioele@svario.it</email> </developer> </developers> <licenses> <license> <name>Public domain (CC0)</name> <url>http://creativecommons.org/publicdomain/zero/1.0/</url> <distribution>repo</distribution> </license> </licenses> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <configuration> <tagNameFormat>v@{project.version}</tagNameFormat> <pushChanges>false</pushChanges> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>6.1.1</version> <scope>test</scope> </dependency> </dependencies> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> </project>