jsonpath
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>de.krsc.jsonpath</groupId>
<artifactId>jsonpath</artifactId>
<version>0.1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
~ (C) Copyright 2014 Kristian Scheibe
~
~ This Source Code Form is subject to the terms of the Mozilla Public
~ License, v. 2.0. If a copy of the MPL was not distributed with this
~ file, You can obtain one at http://mozilla.org/MPL/2.0/.
-->
<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/xsd/maven-4.0.0.xsd">
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>de.krsc.jsonpath</groupId>
<artifactId>jsonpath</artifactId>
<version>0.1</version>
<packaging>jar</packaging>
<name>JSONPath</name>
<description>Java JSONPath implemention</description>
<url>http://krsc.de/jsonpath/</url>
<licenses>
<license>
<name>Mozilla Public License 2.0</name>
<url>https://www.mozilla.org/MPL/2.0/</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://bitbucket.org/krisscheibe/jsonpath</url>
<connection>scm:hg:ssh://hg@bitbucket.org/krisscheibe/jsonpath</connection>
<developerConnection>scm:hg:ssh://hg@bitbucket.org/krisscheibe/jsonpath</developerConnection>
</scm>
<developers>
<developer>
<id>krisscheibe</id>
<name>Kristian Scheibe</name>
<email>kristian.scheibe@gmail.com</email>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<apache.commons.version>3.1</apache.commons.version>
<jsonorg.version>20090211</jsonorg.version>
<!-- test dependency versions -->
<test.hamcrest.version>1.3</test.hamcrest.version>
<test.testng.version>6.8.7</test.testng.version>
<!-- build plugin versions -->
<build.compilerplugin.version>3.1</build.compilerplugin.version>
<build.sourceplugin.version>2.2.1</build.sourceplugin.version>
<build.javadocplugin.version>2.9.1</build.javadocplugin.version>
<build.javaccplugin.version>2.6</build.javaccplugin.version>
<build.gpgplugin.version>1.1</build.gpgplugin.version>
<google.guava.version>15.0</google.guava.version>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${apache.commons.version}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${google.guava.version}</version>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>${jsonorg.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<version>${test.hamcrest.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>${test.testng.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${build.compilerplugin.version}</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>javacc-maven-plugin</artifactId>
<version>${build.javaccplugin.version}</version>
<executions>
<execution>
<id>javacc</id>
<goals>
<goal>javacc</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${build.sourceplugin.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-javadoc-plugin</artifactId>
<version>${build.javadocplugin.version}</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${build.gpgplugin.version}</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>