forked from FasterXML/jackson-jaxrs-providers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
116 lines (104 loc) · 4.16 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<?xml version="1.0" encoding="UTF-8"?>
<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.fasterxml.jackson</groupId>
<artifactId>jackson-parent</artifactId>
<version>2.8</version>
</parent>
<groupId>com.fasterxml.jackson.jaxrs</groupId>
<artifactId>jackson-jaxrs-providers</artifactId>
<name>Jackson JAX-RS</name>
<version>2.8.1-SNAPSHOT</version>
<packaging>pom</packaging>
<description>Parent for Jackson JAX-RS providers
</description>
<modules>
<module>base</module>
<module>datatypes</module>
<module>cbor</module>
<module>json</module>
<module>smile</module>
<module>xml</module>
<module>yaml</module>
</modules>
<url>http://github.com/FasterXML/jackson-jaxrs-providers</url>
<scm>
<connection>scm:git:[email protected]:FasterXML/jackson-jaxrs-providers.git</connection>
<developerConnection>scm:git:[email protected]:FasterXML/jackson-jaxrs-providers.git</developerConnection>
<url>http://github.com/FasterXML/jackson-jaxrs-providers</url>
<tag>HEAD</tag>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- core/databind should have same version; data formats, annotation version from parent pom -->
<version.jackson.core>2.8.0</version.jackson.core>
<version.dataformats>${version.jackson.core}</version.dataformats>
<version.jackson.cbor>${version.dataformats}</version.jackson.cbor>
<version.jackson.smile>${version.dataformats}</version.jackson.smile>
<version.jackson.xml>${version.dataformats}</version.jackson.xml>
<version.jackson.yaml>${version.dataformats}</version.jackson.yaml>
<version.jackson.jaxb>${version.jackson.core}</version.jackson.jaxb>
<!-- Need Jersey+Jetty for testing; deps from DropWizard 0.9 -->
<version.jersey>2.22.2</version.jersey>
<version.jetty>9.2.13.v20150730</version.jetty>
<!-- Needed to enable jax-rs 2.0 usage under OSGi -->
<javax.ws.rs.version>[2.0,2.1)</javax.ws.rs.version>
</properties>
<dependencies>
<!-- and we need JAX-RS annotations for testing as well; but usually provided
by container (and app should definitely have direct dep too, when using annotations)
-->
<dependency>
<groupId>javax.ws.rs</groupId>
<!-- 05-Apr-2014, tatu: JAX-RS 2.x has different artifact-id, "javax.ws.rs-api"
-->
<artifactId>javax.ws.rs-api</artifactId>
<version>2.0.1</version>
<scope>provided</scope>
</dependency>
<!-- tests require JAX-RS impl; otherwise components fail to load
(some oddity with API classes; should NOT be needed...)
NOTE: use 1.2 as that's JDK 1.5; later (1.8) versions need JDK 1.6
-->
<dependency> <!-- all components use junit for testing -->
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
<version>${version.jetty}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlet</artifactId>
<version>${version.jetty}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.core</groupId>
<artifactId>jersey-server</artifactId>
<version>${version.jersey}</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</exclusion>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.containers</groupId>
<artifactId>jersey-container-servlet</artifactId>
<version>${version.jersey}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>