|
|
|
@ -14,24 +14,25 @@
|
|
|
|
|
~ 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"> |
|
|
|
|
<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>0.8.2-SNAPSHOT</version> |
|
|
|
|
<packaging>pom</packaging> |
|
|
|
|
|
|
|
|
|
<url>https://github.com/jayway/JsonPath</url> |
|
|
|
|
<name>json-path-parent-pom</name> |
|
|
|
|
|
|
|
|
|
<description>Java JsonPath implementation</description> |
|
|
|
|
<inceptionYear>2011</inceptionYear> |
|
|
|
|
<issueManagement> |
|
|
|
|
<system>GitHub Issue Tracking</system> |
|
|
|
|
<url /> |
|
|
|
|
<url/> |
|
|
|
|
</issueManagement> |
|
|
|
|
<licenses> |
|
|
|
|
<license> |
|
|
|
@ -39,6 +40,7 @@
|
|
|
|
|
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url> |
|
|
|
|
</license> |
|
|
|
|
</licenses> |
|
|
|
|
|
|
|
|
|
<developers> |
|
|
|
|
<developer> |
|
|
|
|
<name>Kalle Stenflo</name> |
|
|
|
@ -51,76 +53,248 @@
|
|
|
|
|
<role>Developer</role> |
|
|
|
|
</roles> |
|
|
|
|
</developer> |
|
|
|
|
<developer> |
|
|
|
|
<name>Gordon Dickens</name> |
|
|
|
|
<id>gordon.dickens</id> |
|
|
|
|
<organization/> |
|
|
|
|
<organizationUrl>http://www.gordondickens.com</organizationUrl> |
|
|
|
|
<email>gordon at gordondickens.com</email> |
|
|
|
|
<timezone>-5</timezone> |
|
|
|
|
<roles> |
|
|
|
|
<role>Minion</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> |
|
|
|
|
<archive>https://groups.google.com/forum/?fromgroups#!forum/jsonpath</archive> |
|
|
|
|
</mailingList> |
|
|
|
|
</mailingLists> |
|
|
|
|
|
|
|
|
|
<properties> |
|
|
|
|
<commons-lang.version>2.6</commons-lang.version> |
|
|
|
|
<hamcrest.version>1.3</hamcrest.version> |
|
|
|
|
<java.version>1.6</java.version> |
|
|
|
|
<jackson.version>1.9.11</jackson.version> |
|
|
|
|
<json-smart.version>1.1.1</json-smart.version> |
|
|
|
|
<junit.version>4.11</junit.version> |
|
|
|
|
<logback.version>1.0.9</logback.version> |
|
|
|
|
<maven-assembly-plugin.version>2.4</maven-assembly-plugin.version> |
|
|
|
|
<maven-clean-plugin.version>2.5</maven-clean-plugin.version> |
|
|
|
|
<maven-cobertura-plugin.version>2.5.2</maven-cobertura-plugin.version> |
|
|
|
|
<maven-compiler-plugin.version>3.0</maven-compiler-plugin.version> |
|
|
|
|
<maven-dependency-plugin.version>2.6</maven-dependency-plugin.version> |
|
|
|
|
<maven-deploy-plugin.version>2.7</maven-deploy-plugin.version> |
|
|
|
|
<maven-doxia.version>1.3</maven-doxia.version> |
|
|
|
|
<maven-eclipse-plugin.version>2.9</maven-eclipse-plugin.version> |
|
|
|
|
<maven-enforcer-plugin.version>1.2</maven-enforcer-plugin.version> |
|
|
|
|
<maven-findbugs-plugin.version>2.5.2</maven-findbugs-plugin.version> |
|
|
|
|
<maven-gpg-plugin.version>1.4</maven-gpg-plugin.version> |
|
|
|
|
<maven-install-plugin.version>2.4</maven-install-plugin.version> |
|
|
|
|
<maven-jar-plugin.version>2.4</maven-jar-plugin.version> |
|
|
|
|
<maven-javadoc-plugin.version>2.9</maven-javadoc-plugin.version> |
|
|
|
|
<maven-jxr-plugin.version>2.3</maven-jxr-plugin.version> |
|
|
|
|
<maven-m2e-lifecycle-plugin.version>1.0.0</maven-m2e-lifecycle-plugin.version> |
|
|
|
|
<maven-plugin-plugin.version>3.2</maven-plugin-plugin.version> |
|
|
|
|
<maven-project-info-reports-plugin.version>2.6</maven-project-info-reports-plugin.version> |
|
|
|
|
<maven-release-plugin.version>2.3.2</maven-release-plugin.version> |
|
|
|
|
<maven-resources-plugin.version>2.6</maven-resources-plugin.version> |
|
|
|
|
<maven-site-plugin.version>3.2</maven-site-plugin.version> |
|
|
|
|
<maven-source-plugin.version>2.2.1</maven-source-plugin.version> |
|
|
|
|
<maven-surefire-plugin.version>2.12.4</maven-surefire-plugin.version> |
|
|
|
|
<maven.version.range>(,2.1.0),(2.1.0,2.2.0),(2.2.0,)</maven.version.range> |
|
|
|
|
<maven-versions-plugin.version>2.0</maven-versions-plugin.version> |
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
|
|
|
|
<scm.branch>master</scm.branch> |
|
|
|
|
<slf4j.version>1.7.2</slf4j.version> |
|
|
|
|
<wtp.version>2.0</wtp.version> |
|
|
|
|
</properties> |
|
|
|
|
|
|
|
|
|
<modules> |
|
|
|
|
<module>json-path</module> |
|
|
|
|
<module>json-path-assert</module> |
|
|
|
|
</modules> |
|
|
|
|
|
|
|
|
|
<dependencies> |
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.slf4j</groupId> |
|
|
|
|
<artifactId>jcl-over-slf4j</artifactId> |
|
|
|
|
<scope>test</scope> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.slf4j</groupId> |
|
|
|
|
<artifactId>jul-to-slf4j</artifactId> |
|
|
|
|
<scope>test</scope> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>ch.qos.logback</groupId> |
|
|
|
|
<artifactId>logback-classic</artifactId> |
|
|
|
|
<scope>test</scope> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>junit</groupId> |
|
|
|
|
<artifactId>junit</artifactId> |
|
|
|
|
<scope>test</scope> |
|
|
|
|
</dependency> |
|
|
|
|
</dependencies> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<dependencyManagement> |
|
|
|
|
<dependencies> |
|
|
|
|
<dependency> |
|
|
|
|
<groupId>net.minidev</groupId> |
|
|
|
|
<artifactId>json-smart</artifactId> |
|
|
|
|
<version>${json-smart.version}</version> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>commons-lang</groupId> |
|
|
|
|
<artifactId>commons-lang</artifactId> |
|
|
|
|
<version>${commons-lang.version}</version> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.codehaus.jackson</groupId> |
|
|
|
|
<artifactId>jackson-mapper-asl</artifactId> |
|
|
|
|
<optional>true</optional> |
|
|
|
|
<version>${jackson.version}</version> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.hamcrest</groupId> |
|
|
|
|
<artifactId>hamcrest-library</artifactId> |
|
|
|
|
<version>${hamcrest.version}</version> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.hamcrest</groupId> |
|
|
|
|
<artifactId>hamcrest-core</artifactId> |
|
|
|
|
<version>${hamcrest.version}</version> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.slf4j</groupId> |
|
|
|
|
<artifactId>jcl-over-slf4j</artifactId> |
|
|
|
|
<version>${slf4j.version}</version> |
|
|
|
|
<scope>test</scope> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.slf4j</groupId> |
|
|
|
|
<artifactId>slf4j-api</artifactId> |
|
|
|
|
<version>${slf4j.version}</version> |
|
|
|
|
<scope>test</scope> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.slf4j</groupId> |
|
|
|
|
<artifactId>jul-to-slf4j</artifactId> |
|
|
|
|
<version>${slf4j.version}</version> |
|
|
|
|
<scope>test</scope> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>ch.qos.logback</groupId> |
|
|
|
|
<artifactId>logback-classic</artifactId> |
|
|
|
|
<version>${logback.version}</version> |
|
|
|
|
<scope>test</scope> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>junit</groupId> |
|
|
|
|
<artifactId>junit</artifactId> |
|
|
|
|
<version>${junit.version}</version> |
|
|
|
|
<scope>test</scope> |
|
|
|
|
</dependency> |
|
|
|
|
</dependencies> |
|
|
|
|
</dependencyManagement> |
|
|
|
|
|
|
|
|
|
<build> |
|
|
|
|
<pluginManagement> |
|
|
|
|
<plugins> |
|
|
|
|
<!-- |
|
|
|
|
<plugin> |
|
|
|
|
<groupId>org.eclipse.m2e</groupId> |
|
|
|
|
<artifactId>lifecycle-mapping</artifactId> |
|
|
|
|
<version>1.0.0</version> |
|
|
|
|
<configuration> |
|
|
|
|
<lifecycleMappingMetadata> |
|
|
|
|
<pluginExecutions> |
|
|
|
|
<pluginExecution> |
|
|
|
|
<pluginExecutionFilter> |
|
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId> |
|
|
|
|
<versionRange>[2.1,)</versionRange> |
|
|
|
|
<goals> |
|
|
|
|
<goal>copy-dependencies</goal> |
|
|
|
|
<goal>unpack</goal> |
|
|
|
|
</goals> |
|
|
|
|
</pluginExecutionFilter> |
|
|
|
|
<action> |
|
|
|
|
<ignore /> |
|
|
|
|
</action> |
|
|
|
|
</pluginExecution> |
|
|
|
|
</pluginExecutions> |
|
|
|
|
</lifecycleMappingMetadata> |
|
|
|
|
</configuration> |
|
|
|
|
</plugin> |
|
|
|
|
--> |
|
|
|
|
</plugins> |
|
|
|
|
</pluginManagement> |
|
|
|
|
<plugins> |
|
|
|
|
<plugin> |
|
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId> |
|
|
|
|
<version>${maven-assembly-plugin.version}</version> |
|
|
|
|
<configuration> |
|
|
|
|
<descriptorRefs> |
|
|
|
|
<descriptorRef>jar-with-dependencies</descriptorRef> |
|
|
|
|
</descriptorRefs> |
|
|
|
|
</configuration> |
|
|
|
|
</plugin> |
|
|
|
|
<plugin> |
|
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId> |
|
|
|
|
<version>2.3.2</version> |
|
|
|
|
<version>${maven-compiler-plugin.version}</version> |
|
|
|
|
<configuration> |
|
|
|
|
<source>1.6</source> |
|
|
|
|
<target>1.6</target> |
|
|
|
|
<source>${java.version}</source> |
|
|
|
|
<target>${java.version}</target> |
|
|
|
|
<!--<debug>true</debug>--> |
|
|
|
|
<!--<verbose>true</verbose>--> |
|
|
|
|
<!--<compilerArgument>-Xlint:all</compilerArgument>--> |
|
|
|
|
</configuration> |
|
|
|
|
</plugin> |
|
|
|
|
|
|
|
|
|
<plugin> |
|
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
|
<artifactId>maven-clean-plugin</artifactId> |
|
|
|
|
<version>${maven-clean-plugin.version}</version> |
|
|
|
|
</plugin> |
|
|
|
|
<plugin> |
|
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
|
<artifactId>maven-jar-plugin</artifactId> |
|
|
|
|
<version>${maven-jar-plugin.version}</version> |
|
|
|
|
</plugin> |
|
|
|
|
<plugin> |
|
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
|
<artifactId>maven-install-plugin</artifactId> |
|
|
|
|
<version>${maven-install-plugin.version}</version> |
|
|
|
|
</plugin> |
|
|
|
|
<plugin> |
|
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId> |
|
|
|
|
<version>${maven-surefire-plugin.version}</version> |
|
|
|
|
</plugin> |
|
|
|
|
<plugin> |
|
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId> |
|
|
|
|
<version>${maven-deploy-plugin.version}</version> |
|
|
|
|
</plugin> |
|
|
|
|
<plugin> |
|
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
|
<artifactId>maven-release-plugin</artifactId> |
|
|
|
|
<version>${maven-release-plugin.version}</version> |
|
|
|
|
</plugin> |
|
|
|
|
<plugin> |
|
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
|
<artifactId>maven-plugin-plugin</artifactId> |
|
|
|
|
<version>${maven-plugin-plugin.version}</version> |
|
|
|
|
</plugin> |
|
|
|
|
<plugin> |
|
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
|
<artifactId>maven-source-plugin</artifactId> |
|
|
|
|
<version>${maven-source-plugin.version}</version> |
|
|
|
|
<executions> |
|
|
|
|
<execution> |
|
|
|
|
<id>attach-sources</id> |
|
|
|
|
<goals> |
|
|
|
|
<goal>jar</goal> |
|
|
|
|
</goals> |
|
|
|
|
</execution> |
|
|
|
|
</executions> |
|
|
|
|
</plugin> |
|
|
|
|
<plugin> |
|
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId> |
|
|
|
|
<version>2.1</version> |
|
|
|
|
<version>${maven-dependency-plugin.version}</version> |
|
|
|
|
<executions> |
|
|
|
|
<execution> |
|
|
|
|
<id>copy-dependencies</id> |
|
|
|
@ -136,37 +310,175 @@
|
|
|
|
|
<overWriteIfNewer>true</overWriteIfNewer> |
|
|
|
|
</configuration> |
|
|
|
|
</execution> |
|
|
|
|
<execution> |
|
|
|
|
<phase>generate-sources</phase> |
|
|
|
|
<goals> |
|
|
|
|
<goal>sources</goal> |
|
|
|
|
</goals> |
|
|
|
|
</execution> |
|
|
|
|
</executions> |
|
|
|
|
<configuration> |
|
|
|
|
<verbose>true</verbose> |
|
|
|
|
</configuration> |
|
|
|
|
</plugin> |
|
|
|
|
<!-- |
|
|
|
|
<plugin> |
|
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId> |
|
|
|
|
<version>2.7</version> |
|
|
|
|
<artifactId>maven-enforcer-plugin</artifactId> |
|
|
|
|
<version>${maven-enforcer-plugin.version}</version> |
|
|
|
|
<executions> |
|
|
|
|
<execution> |
|
|
|
|
<id>attach-javadocs</id> |
|
|
|
|
<id>enforce-banned-dependencies</id> |
|
|
|
|
<goals> |
|
|
|
|
<goal>jar</goal> |
|
|
|
|
<goal>enforce</goal> |
|
|
|
|
</goals> |
|
|
|
|
<configuration> |
|
|
|
|
<rules> |
|
|
|
|
<DependencyConvergence/> |
|
|
|
|
<bannedDependencies> |
|
|
|
|
<searchTransitive>true</searchTransitive> |
|
|
|
|
<excludes> |
|
|
|
|
<exclude>javassist:javassist</exclude> |
|
|
|
|
<exclude>commons-logging</exclude> |
|
|
|
|
<exclude>asm:asm*</exclude> |
|
|
|
|
<exclude>log4j:log4j</exclude> |
|
|
|
|
<exclude>org.slf4j:1.5*</exclude> |
|
|
|
|
</excludes> |
|
|
|
|
</bannedDependencies> |
|
|
|
|
<requireMavenVersion> |
|
|
|
|
<version>${maven.version.range}</version> |
|
|
|
|
<message>Maven 2.1.0 and 2.2.0 produce incorrect GPG signatures and |
|
|
|
|
checksums respectively. |
|
|
|
|
</message> |
|
|
|
|
</requireMavenVersion> |
|
|
|
|
<requireJavaVersion> |
|
|
|
|
<version>${java.version}</version> |
|
|
|
|
</requireJavaVersion> |
|
|
|
|
</rules> |
|
|
|
|
<fail>true</fail> |
|
|
|
|
</configuration> |
|
|
|
|
</execution> |
|
|
|
|
</executions> |
|
|
|
|
</plugin> |
|
|
|
|
<plugin> |
|
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
|
<artifactId>maven-source-plugin</artifactId> |
|
|
|
|
<version>2.1.2</version> |
|
|
|
|
<artifactId>maven-eclipse-plugin</artifactId> |
|
|
|
|
<version>${maven-eclipse-plugin.version}</version> |
|
|
|
|
<configuration> |
|
|
|
|
<downloadSources>true</downloadSources> |
|
|
|
|
<downloadJavadocs>true</downloadJavadocs> |
|
|
|
|
<wtpversion>${wtp.version}</wtpversion> |
|
|
|
|
<additionalBuildcommands> |
|
|
|
|
<buildCommand> |
|
|
|
|
<name>org.springframework.ide.eclipse.core.springbuilder</name> |
|
|
|
|
<name>org.eclipse.m2e.core.maven2Builder</name> |
|
|
|
|
</buildCommand> |
|
|
|
|
</additionalBuildcommands> |
|
|
|
|
<additionalProjectnatures> |
|
|
|
|
<projectnature>org.eclipse.jdt.core.javanature</projectnature> |
|
|
|
|
<projectnature>org.springframework.ide.eclipse.core.springnature</projectnature> |
|
|
|
|
<projectnature>org.eclipse.m2e.core.maven2Nature</projectnature> |
|
|
|
|
</additionalProjectnatures> |
|
|
|
|
</configuration> |
|
|
|
|
</plugin> |
|
|
|
|
<plugin> |
|
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
|
<artifactId>maven-site-plugin</artifactId> |
|
|
|
|
<version>${maven-site-plugin.version}</version> |
|
|
|
|
<executions> |
|
|
|
|
<execution> |
|
|
|
|
<id>attach-sources</id> |
|
|
|
|
<id>attach-descriptor</id> |
|
|
|
|
<goals> |
|
|
|
|
<goal>jar</goal> |
|
|
|
|
<goal>attach-descriptor</goal> |
|
|
|
|
</goals> |
|
|
|
|
</execution> |
|
|
|
|
</executions> |
|
|
|
|
<configuration> |
|
|
|
|
<reportPlugins> |
|
|
|
|
<plugin> |
|
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
|
<artifactId>maven-surefire-report-plugin</artifactId> |
|
|
|
|
<version>${maven-surefire-plugin.version}</version> |
|
|
|
|
<configuration> |
|
|
|
|
<outputDirectory>${project.reporting.outputDirectory}/testresults |
|
|
|
|
</outputDirectory> |
|
|
|
|
</configuration> |
|
|
|
|
</plugin> |
|
|
|
|
<plugin> |
|
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId> |
|
|
|
|
<version>${maven-javadoc-plugin.version}</version> |
|
|
|
|
<configuration> |
|
|
|
|
<aggregate>true</aggregate> |
|
|
|
|
</configuration> |
|
|
|
|
</plugin> |
|
|
|
|
<plugin> |
|
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
|
<artifactId>maven-project-info-reports-plugin</artifactId> |
|
|
|
|
<version>${maven-project-info-reports-plugin.version}</version> |
|
|
|
|
<configuration> |
|
|
|
|
<dependencyDetailsEnabled>false</dependencyDetailsEnabled> |
|
|
|
|
<dependencyLocationsEnabled>false</dependencyLocationsEnabled> |
|
|
|
|
</configuration> |
|
|
|
|
</plugin> |
|
|
|
|
<plugin> |
|
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
|
<artifactId>maven-jxr-plugin</artifactId> |
|
|
|
|
<version>${maven-jxr-plugin.version}</version> |
|
|
|
|
<configuration> |
|
|
|
|
<aggregate>true</aggregate> |
|
|
|
|
</configuration> |
|
|
|
|
</plugin> |
|
|
|
|
<plugin> |
|
|
|
|
<groupId>org.codehaus.mojo</groupId> |
|
|
|
|
<artifactId>findbugs-maven-plugin</artifactId> |
|
|
|
|
<version>${maven-findbugs-plugin.version}</version> |
|
|
|
|
</plugin> |
|
|
|
|
<plugin> |
|
|
|
|
<groupId>org.codehaus.mojo</groupId> |
|
|
|
|
<artifactId>cobertura-maven-plugin</artifactId> |
|
|
|
|
<version>${maven-cobertura-plugin.version}</version> |
|
|
|
|
<configuration> |
|
|
|
|
<aggregate>true</aggregate> |
|
|
|
|
<outputDirectory>%{project.reporting.outputDirectory}/cobertura</outputDirectory> |
|
|
|
|
</configuration> |
|
|
|
|
</plugin> |
|
|
|
|
</reportPlugins> |
|
|
|
|
</configuration> |
|
|
|
|
</plugin> |
|
|
|
|
--> |
|
|
|
|
</plugins> |
|
|
|
|
|
|
|
|
|
<pluginManagement> |
|
|
|
|
<plugins> |
|
|
|
|
<!-- N.B. Lifecycle mapping is not a real plugin, it is to support Eclipse Foundation's M2E plugin --> |
|
|
|
|
<!-- |
|
|
|
|
<plugin> |
|
|
|
|
<groupId>org.eclipse.m2e</groupId> |
|
|
|
|
<artifactId>lifecycle-mapping</artifactId> |
|
|
|
|
<version>1.0.0</version> |
|
|
|
|
<configuration> |
|
|
|
|
<lifecycleMappingMetadata> |
|
|
|
|
<pluginExecutions> |
|
|
|
|
<pluginExecution> |
|
|
|
|
<pluginExecutionFilter> |
|
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId> |
|
|
|
|
<versionRange>[2.1,)</versionRange> |
|
|
|
|
<goals> |
|
|
|
|
<goal>copy-dependencies</goal> |
|
|
|
|
<goal>unpack</goal> |
|
|
|
|
</goals> |
|
|
|
|
</pluginExecutionFilter> |
|
|
|
|
<action> |
|
|
|
|
<ignore /> |
|
|
|
|
</action> |
|
|
|
|
</pluginExecution> |
|
|
|
|
</pluginExecutions> |
|
|
|
|
</lifecycleMappingMetadata> |
|
|
|
|
</configuration> |
|
|
|
|
</plugin> |
|
|
|
|
--> |
|
|
|
|
</plugins> |
|
|
|
|
</pluginManagement> |
|
|
|
|
</build> |
|
|
|
|
|
|
|
|
|
<profiles> |
|
|
|
@ -177,7 +489,7 @@
|
|
|
|
|
<plugin> |
|
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId> |
|
|
|
|
<version>2.7</version> |
|
|
|
|
<version>${maven-javadoc-plugin.version}</version> |
|
|
|
|
<executions> |
|
|
|
|
<execution> |
|
|
|
|
<id>attach-javadocs</id> |
|
|
|
@ -190,7 +502,6 @@
|
|
|
|
|
<plugin> |
|
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
|
<artifactId>maven-source-plugin</artifactId> |
|
|
|
|
<version>2.1.2</version> |
|
|
|
|
<executions> |
|
|
|
|
<execution> |
|
|
|
|
<id>attach-sources</id> |
|
|
|
@ -200,51 +511,22 @@
|
|
|
|
|
</execution> |
|
|
|
|
</executions> |
|
|
|
|
</plugin> |
|
|
|
|
<plugin> |
|
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId> |
|
|
|
|
<version>${maven-gpg-plugin.version}</version> |
|
|
|
|
<executions> |
|
|
|
|
<execution> |
|
|
|
|
<id>sign-artifacts</id> |
|
|
|
|
<phase>verify</phase> |
|
|
|
|
<goals> |
|
|
|
|
<goal>sign</goal> |
|
|
|
|
</goals> |
|
|
|
|
</execution> |
|
|
|
|
</executions> |
|
|
|
|
</plugin> |
|
|
|
|
</plugins> |
|
|
|
|
</build> |
|
|
|
|
</profile> |
|
|
|
|
</profiles> |
|
|
|
|
|
|
|
|
|
<dependencyManagement> |
|
|
|
|
<dependencies> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>net.minidev</groupId> |
|
|
|
|
<artifactId>json-smart</artifactId> |
|
|
|
|
<version>1.1.1</version> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>commons-lang</groupId> |
|
|
|
|
<artifactId>commons-lang</artifactId> |
|
|
|
|
<version>2.6</version> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.codehaus.jackson</groupId> |
|
|
|
|
<artifactId>jackson-mapper-asl</artifactId> |
|
|
|
|
<optional>true</optional> |
|
|
|
|
<version>1.9.5</version> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.hamcrest</groupId> |
|
|
|
|
<artifactId>hamcrest-library</artifactId> |
|
|
|
|
<version>1.2.1</version> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.hamcrest</groupId> |
|
|
|
|
<artifactId>hamcrest-core</artifactId> |
|
|
|
|
<version>1.2.1</version> |
|
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>junit</groupId> |
|
|
|
|
<artifactId>junit</artifactId> |
|
|
|
|
<version>4.10</version> |
|
|
|
|
<scope>test</scope> |
|
|
|
|
</dependency> |
|
|
|
|
</dependencies> |
|
|
|
|
</dependencyManagement> |
|
|
|
|
</project> |