You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
161 lines
5.5 KiB
161 lines
5.5 KiB
<?xml version="1.0" encoding="UTF-8"?> |
|
<!-- |
|
~ Copyright 2010 the original author or authors. |
|
~ |
|
~ Licensed 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> |
|
<parent> |
|
<groupId>org.sonatype.oss</groupId> |
|
<artifactId>oss-parent</artifactId> |
|
<version>5</version> |
|
</parent> |
|
<groupId>com.jayway.jsonpath</groupId> |
|
<artifactId>json-path-parent</artifactId> |
|
<packaging>pom</packaging> |
|
<version>1.0-SNAPSHOT</version> |
|
<url>http://code.google.com/p/json-path</url> |
|
<name>json-path-parent-pom</name> |
|
<description>Java JsonPath implementation</description> |
|
<inceptionYear>2011</inceptionYear> |
|
<issueManagement> |
|
<system>GitHub Issue Tracking</system> |
|
<url/> |
|
</issueManagement> |
|
<licenses> |
|
<license> |
|
<name>Apache 2.0</name> |
|
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url> |
|
</license> |
|
</licenses> |
|
<developers> |
|
<developer> |
|
<name>Kalle Stenflo</name> |
|
<id>kalle.stenflo</id> |
|
<organization>Jayway</organization> |
|
<organizationUrl>http://www.jayway.com</organizationUrl> |
|
<email>kale.stenflo at gmail.com</email> |
|
<timezone>+1</timezone> |
|
<roles> |
|
<role>Developer</role> |
|
</roles> |
|
</developer> |
|
</developers> |
|
<properties> |
|
<scm.branch>master</scm.branch> |
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
</properties> |
|
<scm> |
|
<url>http://github.com/jayway/JsonPath/tree/${scm.branch}</url> |
|
<connection>scm:git:git://github.com/jayway/JsonPath.git</connection> |
|
<developerConnection>scm:git:ssh://git@github.com/jayway/JsonPath.git</developerConnection> |
|
</scm> |
|
|
|
<mailingLists> |
|
<mailingList> |
|
<name>JsonPath mailing-list</name> |
|
<archive>http://groups.google.com/group/json-path/topics</archive> |
|
</mailingList> |
|
</mailingLists> |
|
|
|
<modules> |
|
<module>json-path</module> |
|
<module>json-path-assert</module> |
|
</modules> |
|
|
|
<build> |
|
<pluginManagement> |
|
<plugins> |
|
</plugins> |
|
</pluginManagement> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-compiler-plugin</artifactId> |
|
<version>2.3.2</version> |
|
<configuration> |
|
<source>1.5</source> |
|
<target>1.5</target> |
|
</configuration> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
|
|
<profiles> |
|
<profile> |
|
<id>release</id> |
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-javadoc-plugin</artifactId> |
|
<version>2.7</version> |
|
<executions> |
|
<execution> |
|
<id>attach-javadocs</id> |
|
<goals> |
|
<goal>jar</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-source-plugin</artifactId> |
|
<executions> |
|
<execution> |
|
<id>attach-sources</id> |
|
<goals> |
|
<goal>jar</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
</profile> |
|
</profiles> |
|
|
|
<dependencyManagement> |
|
<dependencies> |
|
|
|
<dependency> |
|
<groupId>com.googlecode.json-simple</groupId> |
|
<artifactId>json-simple</artifactId> |
|
<version>1.1</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.hamcrest</groupId> |
|
<artifactId>hamcrest-all</artifactId> |
|
<version>1.1</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>commons-lang</groupId> |
|
<artifactId>commons-lang</artifactId> |
|
<version>2.5</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>junit</groupId> |
|
<artifactId>junit</artifactId> |
|
<version>4.8.2</version> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
</dependencies> |
|
</dependencyManagement> |
|
</project> |