forked from FasterXML/jackson-jr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
57 lines (50 loc) · 2 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
<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-bom</artifactId>
<version>2.9.0.pr3</version>
</parent>
<groupId>com.fasterxml.jackson.jr</groupId>
<artifactId>jackson-jr-parent</artifactId>
<name>Parent pom for Jackson jr components</name>
<version>2.9.0-SNAPSHOT</version>
<packaging>pom</packaging>
<description>Parent pom for Jackson jr components
</description>
<modules>
<module>jr-objects</module>
<module>jr-retrofit2</module>
<module>jr-stree</module>
<module>jr-all</module>
</modules>
<url>https://github.com/FasterXML/jackson-jr</url>
<scm>
<connection>scm:git:[email protected]:FasterXML/jackson-jr.git</connection>
<developerConnection>scm:git:[email protected]:FasterXML/jackson-jr.git</developerConnection>
<url>http://github.com/FasterXML/jackson-jr</url>
<tag>HEAD</tag>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- 04-May-2016, tatu: This should still work with 2.8, as jackson-core
only requires Java 6 (unlike databind and other modules)
-->
<javac.src.version>1.6</javac.src.version>
<javac.target.version>1.6</javac.target.version>
<!-- 04-May-2016, tatu: Bundle-plugin 3.x seems to require Java 7, so to
build for Java 6 need to downgrade here to last working 2.x version
(2.5.4 had some issues wrt shading)
-->
<version.plugin.bundle>2.5.3</version.plugin.bundle>
<!-- Aggressively minimize jar size; drop 'lines' and 'vars' -->
<javac.debuglevel>source</javac.debuglevel>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>