
til.jxpath.1.2.0.source-code.pom.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jxpath Show documentation
Show all versions of jxpath Show documentation
A Java-based implementation of XPath 1.0 based on Apache Commons JXPath, withe enhancements to process
graphs of JAXB-Serializable objects using the properties' XML names.
<?xml version="1.0" encoding="ISO-8859-1"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <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>net.codesup.util</groupId> <artifactId>jxpath</artifactId> <name>Fork of Apache Commons JXPath with JAXB extensions</name> <!-- when cutting a release, be sure to modify the commons.release.version property, found at /project/properties/commons.release.version in this document --> <version>1.2.0</version> <description>A Java-based implementation of XPath 1.0 based on Apache Commons JXPath, withe enhancements to process graphs of JAXB-Serializable objects using the properties' XML names. </description> <inceptionYear>2015</inceptionYear> <url>https://github.com/mklemm/commons-jxpath</url> <licenses> <license> <name>MIT License</name> <url>http://opensource.org/licenses/MIT</url> </license> </licenses> <developers> <developer> <name>Mirko Klemm</name> <email>[email protected]</email> </developer> </developers> <scm> <connection>scm:git:https://github.com/mklemm/commons-jxpath.git</connection> <developerConnection>scm:git:https://github.com/mklemm/commons-jxpath.git</developerConnection> <url>https://github.com/mklemm/commons-jxpath.git</url> <tag>jxpath-1.2.0</tag> </scm> <properties> <commons.componentid>jxpath</commons.componentid> <!-- should agree with project.version for releases: --> <commons.release.version>1.0.0</commons.release.version> <commons.jira.id>JXPATH</commons.jira.id> <commons.jira.pid>12310480</commons.jira.pid> <commons.osgi.import>*;resolution:=optional</commons.osgi.import> <maven.compile.source>1.7</maven.compile.source> <maven.compile.target>1.7</maven.compile.target> <github.global.server>github</github.global.server> </properties> <build> <sourceDirectory>src/java</sourceDirectory> <testSourceDirectory>src/test</testSourceDirectory> <testResources> <testResource> <directory>src/test</directory> <includes> <include>**/*.xml</include> </includes> </testResource> </testResources> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.10</version> <configuration> <includes> <include>**/*Test.java</include> </includes> </configuration> <dependencies> <dependency> <groupId>org.apache.maven.surefire</groupId> <artifactId>surefire-junit3</artifactId> <version>2.10</version> </dependency> </dependencies> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration> <descriptors> <descriptor>src/assembly/bin.xml</descriptor> <descriptor>src/assembly/src.xml</descriptor> </descriptors> <tarLongFileMode>gnu</tarLongFileMode> </configuration> </plugin> </plugins> </build> <dependencyManagement> <dependencies> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.1.1</version> <scope>runtime</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>xerces</groupId> <artifactId>xercesImpl</artifactId> <version>2.4.0</version> <scope>provided</scope> <optional>true</optional> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.4</version> <scope>provided</scope> <optional>true</optional> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>jsp-api</artifactId> <version>2.0</version> <scope>provided</scope> <optional>true</optional> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> <dependency> <groupId>xml-apis</groupId> <artifactId>xml-apis</artifactId> <version>1.3.04</version> <scope>provided</scope> <optional>true</optional> </dependency> <dependency> <groupId>jdom</groupId> <artifactId>jdom</artifactId> <version>1.0</version> <optional>true</optional> </dependency> <dependency> <groupId>commons-beanutils</groupId> <artifactId>commons-beanutils</artifactId> <version>1.8.2</version> <optional>false</optional> </dependency> <dependency> <groupId>com.mockrunner</groupId> <artifactId>mockrunner-jdk1.3-j2ee1.3</artifactId> <version>0.4</version> <scope>test</scope> <exclusions> <exclusion> <groupId>cglib-nodep</groupId> <artifactId>cglib-nodep</artifactId> </exclusion> <exclusion> <groupId>jboss</groupId> <artifactId>jboss-jee</artifactId> </exclusion> <exclusion> <groupId>nekohtml</groupId> <artifactId>nekohtml</artifactId> </exclusion> <exclusion> <groupId>struts</groupId> <artifactId>struts</artifactId> </exclusion> <exclusion> <groupId>oro</groupId> <artifactId>oro</artifactId> </exclusion> <exclusion> <groupId>commons-validator</groupId> <artifactId>commons-validator</artifactId> </exclusion> <exclusion> <groupId>commons-digester</groupId> <artifactId>commons-digester</artifactId> </exclusion> </exclusions> </dependency> </dependencies> <profiles> <profile> <id>release</id> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <build> <plugins> <plugin> <artifactId>maven-release-plugin</artifactId> <version>2.5.2</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <goals>deploy</goals> </configuration> <dependencies> <dependency> <groupId>org.apache.maven.scm</groupId> <artifactId>maven-scm-provider-gitexe</artifactId> <version>1.9.2</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.5</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.4</version> <executions> <execution> <id>attach-sources</id> <phase>package</phase> <goals> <goal>jar-no-fork</goal> <goal>test-jar-no-fork</goal> </goals> <configuration> <includePom>true</includePom> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.1</version> <executions> <execution> <id>javadoc</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <maxmemory>512m</maxmemory> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <keyname>[email protected]</keyname> </configuration> </plugin> </plugins> </build> </profile> </profiles> <distributionManagement> <snapshotRepository> <id>default-server</id> <name>snapshots-repo</name> <url>${default.snapshots}</url> </snapshotRepository> <repository> <id>default-server</id> <name>releases-repo</name> <url>${default.releases}</url> </repository> </distributionManagement> </project>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy