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.
138 lines
4.9 KiB
138 lines
4.9 KiB
14 years ago
|
<?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.jsonassert</groupId>
|
||
|
<artifactId>json-assert-parent</artifactId>
|
||
|
<packaging>pom</packaging>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
<url>http://code.google.com/p/rest-assured</url>
|
||
|
<name>json-assert-parent-pom</name>
|
||
|
<description>Java DSL for easy testing and reading of JSON data</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/json-assert/tree/${scm.branch}</url>
|
||
|
<connection>scm:git:git://github.com/jayway/json-assert.git</connection>
|
||
|
<developerConnection>scm:git:ssh://git@github.com/jayway/json-assert.git</developerConnection>
|
||
|
</scm>
|
||
|
|
||
|
<mailingLists>
|
||
|
<mailingList>
|
||
|
<name>json-assert mailing-list</name>
|
||
|
<archive>http://groups.google.com/group/rest-assured/topics</archive>
|
||
|
</mailingList>
|
||
|
</mailingLists>
|
||
|
|
||
|
<modules>
|
||
|
<module>json-assert</module>
|
||
|
<module>examples</module>
|
||
|
</modules>
|
||
|
|
||
|
<build>
|
||
|
<pluginManagement>
|
||
|
<plugins>
|
||
|
</plugins>
|
||
|
</pluginManagement>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<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>junit</groupId>
|
||
|
<artifactId>junit</artifactId>
|
||
|
<version>4.8.2</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</dependencyManagement>
|
||
|
</project>
|