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.
126 lines
4.3 KiB
126 lines
4.3 KiB
<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"> |
|
<modelVersion>4.0.0</modelVersion> |
|
<parent> |
|
<groupId>com.jayway.jsonpath</groupId> |
|
<artifactId>json-path-parent</artifactId> |
|
<version>0.9.2-SNAPSHOT</version> |
|
</parent> |
|
|
|
<groupId>com.jayway.jsonpath</groupId> |
|
<artifactId>json-path-web-test</artifactId> |
|
<version>0.9.2-SNAPSHOT</version> |
|
|
|
<properties> |
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
<gatling-jsonpath.version>0.4.0</gatling-jsonpath.version> |
|
<boon.version>0.25 |
|
</boon.version> |
|
</properties> |
|
|
|
<dependencies> |
|
<dependency> |
|
<groupId>org.eclipse.jetty.aggregate</groupId> |
|
<artifactId>jetty-all</artifactId> |
|
<version>9.2.0.v20140526</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.glassfish.jersey.containers</groupId> |
|
<artifactId>jersey-container-servlet</artifactId> |
|
<version>2.9.1</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.glassfish.jersey.media</groupId> |
|
<artifactId>jersey-media-json-jackson</artifactId> |
|
<version>2.9.1</version> |
|
<exclusions> |
|
<exclusion> |
|
<artifactId>jackson-annotations</artifactId> |
|
<groupId>com.fasterxml.jackson.core</groupId> |
|
</exclusion> |
|
<exclusion> |
|
<artifactId>jackson-core</artifactId> |
|
<groupId>com.fasterxml.jackson.core</groupId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.slf4j</groupId> |
|
<artifactId>slf4j-simple</artifactId> |
|
<scope>runtime</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>commons-io</groupId> |
|
<artifactId>commons-io</artifactId> |
|
<version>${commons-io.version}</version> |
|
</dependency> |
|
|
|
|
|
<dependency> |
|
<groupId>com.jayway.jsonpath</groupId> |
|
<artifactId>json-path</artifactId> |
|
<version>${project.version}</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>io.fastjson</groupId> |
|
<artifactId>boon</artifactId> |
|
<version>${boon.version}</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.nebhale.jsonpath</groupId> |
|
<artifactId>jsonpath</artifactId> |
|
<version>1.2</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.fasterxml.jackson.core</groupId> |
|
<artifactId>jackson-databind</artifactId> |
|
<version>${jackson.version}</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>io.gatling</groupId> |
|
<artifactId>jsonpath_2.10</artifactId> |
|
<version>${gatling-jsonpath.version}</version> |
|
</dependency> |
|
|
|
|
|
</dependencies> |
|
|
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-jar-plugin</artifactId> |
|
<version>2.4</version> |
|
<configuration> |
|
<archive> |
|
<manifest> |
|
<mainClass>com.jayway.jsonpath.web.boot.Main</mainClass> |
|
</manifest> |
|
</archive> |
|
</configuration> |
|
</plugin> |
|
<plugin> |
|
<groupId>com.jolira</groupId> |
|
<artifactId>onejar-maven-plugin</artifactId> |
|
<version>1.4.4</version> |
|
<executions> |
|
<execution> |
|
<configuration> |
|
<onejarVersion>0.97</onejarVersion> |
|
<attachToBuild>true</attachToBuild> |
|
<classifier>onejar</classifier> |
|
</configuration> |
|
<goals> |
|
<goal>one-jar</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
</project>
|
|
|