blob: de491986a00232e5e83c3c74dae91776abd59c2c [file] [log] [blame]
simonetripodi451776a2012-08-24 14:21:58 +02001<?xml version="1.0" encoding="UTF-8"?>
Tatu Saloranta90c43522011-12-22 23:25:27 -08002<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">
Ben Gertzfield66a12b62013-01-04 12:01:07 -08003 <modelVersion>4.0.0</modelVersion>
simonetripodi451776a2012-08-24 14:21:58 +02004
Tatu Saloranta90c43522011-12-22 23:25:27 -08005 <parent>
Tatu Saloranta09468092014-02-28 20:37:39 -08006 <groupId>com.fasterxml.jackson</groupId>
Tatu Salorantaf9ea9792017-09-09 17:27:52 -07007 <artifactId>jackson-base</artifactId>
8 <version>2.9.2-SNAPSHOT</version>
Tatu Saloranta90c43522011-12-22 23:25:27 -08009 </parent>
simonetripodi451776a2012-08-24 14:21:58 +020010
Tatu Saloranta90c43522011-12-22 23:25:27 -080011 <groupId>com.fasterxml.jackson.core</groupId>
12 <artifactId>jackson-databind</artifactId>
Tatu Saloranta5254c372017-09-07 18:09:09 -070013 <version>2.9.2-SNAPSHOT</version>
simonetripodi451776a2012-08-24 14:21:58 +020014 <name>jackson-databind</name>
Lukasz Dywicki9fb18f42013-09-03 19:27:55 +020015 <packaging>bundle</packaging>
simonetripodi451776a2012-08-24 14:21:58 +020016 <description>General data-binding functionality for Jackson: works on core streaming API</description>
Tatu Saloranta7cf95f12014-11-06 08:28:25 -080017 <url>http://github.com/FasterXML/jackson</url>
Cowtowncoder16aa3052015-10-07 11:14:52 -070018 <inceptionYear>2008</inceptionYear>
simonetripodi451776a2012-08-24 14:21:58 +020019
Tatu Saloranta90c43522011-12-22 23:25:27 -080020 <scm>
21 <connection>scm:git:git@github.com:FasterXML/jackson-databind.git</connection>
22 <developerConnection>scm:git:git@github.com:FasterXML/jackson-databind.git</developerConnection>
Ben Gertzfield66a12b62013-01-04 12:01:07 -080023 <url>http://github.com/FasterXML/jackson-databind</url>
Tatu Saloranta5254c372017-09-07 18:09:09 -070024 <tag>HEAD</tag>
Tatu Saloranta90c43522011-12-22 23:25:27 -080025 </scm>
Tatu Saloranta90c43522011-12-22 23:25:27 -080026
Tatu Saloranta90c43522011-12-22 23:25:27 -080027 <properties>
Tatu Saloranta65807342016-09-15 18:15:09 -070028 <!-- With Jackson 2.9 we will require JDK 7 (except for annotations/streaming),
Tatu Saloranta5fdb9322016-02-28 17:47:30 -080029 and new language features (diamond pattern) may be used.
Tatu Saloranta65807342016-09-15 18:15:09 -070030 JDK classes are still loaded dynamically since there isn't much downside
31 (small number of types); this allows use on JDK 6 platforms still (including
32 Android)
Cowtowncoder37b4ad52015-10-02 17:09:37 -070033 -->
Tatu Saloranta8f4b6232016-02-03 19:03:17 -080034 <javac.src.version>1.7</javac.src.version>
35 <javac.target.version>1.7</javac.target.version>
Cowtowncoder37b4ad52015-10-02 17:09:37 -070036
Cowtowncoder129180d2015-08-14 14:54:06 -070037 <!-- Can not use default, since group id != Java package name here -->
38 <osgi.export>com.fasterxml.jackson.databind.*;version=${project.version}</osgi.export>
39 <!-- but imports should work fine with defaults -->
Ben Gertzfield5780f882013-01-03 17:04:21 -080040
Ben Gertzfield66a12b62013-01-04 12:01:07 -080041 <!-- Generate PackageVersion.java into this directory. -->
Tatu Salorantaf314ac72013-01-10 19:50:17 -080042 <packageVersion.dir>com/fasterxml/jackson/databind/cfg</packageVersion.dir>
Ben Gertzfield66a12b62013-01-04 12:01:07 -080043 <packageVersion.package>com.fasterxml.jackson.databind.cfg</packageVersion.package>
Tatu Saloranta3ac8ccc2017-09-07 10:08:39 -070044
45 <!-- since 2.9.1: NOTE! can not use packageVersion.package as is -->
46 <jdk.module.name>com.fasterxml.jackson.databind</jdk.module.name>
Tatu Saloranta90c43522011-12-22 23:25:27 -080047 </properties>
48
Tatu Saloranta90c43522011-12-22 23:25:27 -080049 <dependencies>
50 <!-- Builds on core streaming API; also needs core annotations -->
51 <dependency>
52 <groupId>com.fasterxml.jackson.core</groupId>
Tatu Salorantadeaee9c2012-03-25 12:01:34 -070053 <artifactId>jackson-annotations</artifactId>
Tatu Salorantacd6ebaf2017-03-06 20:10:33 -080054 <!-- 06-Mar-2017, tatu: Although bom provides for dependencies, some legacy
55 usage seems to benefit from actually specifying version here in case
56 it is dependent on transitively
57 -->
58 <version>${jackson.version.annotations}</version>
Tatu Saloranta90c43522011-12-22 23:25:27 -080059 </dependency>
60 <dependency>
61 <groupId>com.fasterxml.jackson.core</groupId>
Tatu Salorantadeaee9c2012-03-25 12:01:34 -070062 <artifactId>jackson-core</artifactId>
Tatu Salorantacd6ebaf2017-03-06 20:10:33 -080063 <version>${jackson.version.core}</version>
Tatu Saloranta90c43522011-12-22 23:25:27 -080064 </dependency>
Tatu Saloranta6e21fbf2011-12-24 10:08:25 -080065
Tatu Saloranta09468092014-02-28 20:37:39 -080066 <!-- and for testing we need a few libraries
Tatu Saloranta6e21fbf2011-12-24 10:08:25 -080067 libs for which we use reflection for code, but direct dep for testing
68 -->
Tatu Saloranta504464d2016-05-03 19:25:52 -070069
70 <dependency>
lufe66cfe88fe2015-06-30 15:35:30 +020071 <groupId>org.powermock</groupId>
72 <artifactId>powermock-module-junit4</artifactId>
Tatu Saloranta14b49cb2016-05-21 09:18:01 -070073 <version>1.6.5</version>
lufe66cfe88fe2015-06-30 15:35:30 +020074 <scope>test</scope>
Tatu Saloranta3c35f1c2015-11-28 12:18:48 -080075 </dependency>
76 <dependency>
lufe66cfe88fe2015-06-30 15:35:30 +020077 <groupId>org.powermock</groupId>
78 <artifactId>powermock-api-mockito</artifactId>
Tatu Saloranta14b49cb2016-05-21 09:18:01 -070079 <version>1.6.5</version>
lufe66cfe88fe2015-06-30 15:35:30 +020080 <scope>test</scope>
Tatu Saloranta3c35f1c2015-11-28 12:18:48 -080081 </dependency>
Michael Spiegele7c54202014-11-26 20:40:21 -050082 <!-- For testing TestNoClassDefFoundDeserializer -->
83 <dependency>
Michael Spiegel95f3fab2014-11-29 10:51:55 -050084 <groupId>javax.measure</groupId>
85 <artifactId>jsr-275</artifactId>
Cowtowncoder37b4ad52015-10-02 17:09:37 -070086 <version>1.0.0</version>
Michael Spiegele7c54202014-11-26 20:40:21 -050087 <scope>test</scope>
88 </dependency>
Tatu Saloranta90c43522011-12-22 23:25:27 -080089 </dependencies>
90
91 <build>
Tatu Saloranta7eeabba2014-04-26 12:23:49 -070092 <plugins>
Tatu Salorantaf9ea9792017-09-09 17:27:52 -070093 <!-- Important: enable enforcer plug-in: -->
94 <plugin>
95 <artifactId>maven-enforcer-plugin</artifactId>
96 <executions> <!-- or? combine.children="merge"> -->
97 <execution>
98 <id>enforce-properties</id>
99 <phase>validate</phase>
100 <goals><goal>enforce</goal></goals>
101 </execution>
102 </executions>
103 </plugin>
104
Tatu Saloranta4294ffc2014-09-03 22:40:45 -0700105 <plugin>
Tatu Salorantad063daa2012-02-24 16:09:04 -0800106 <groupId>org.apache.maven.plugins</groupId>
Cowtowncoder044bb5a2014-10-03 10:50:17 -0700107 <version>${version.plugin.surefire}</version>
Tatu Salorantad063daa2012-02-24 16:09:04 -0800108 <artifactId>maven-surefire-plugin</artifactId>
Tatu Salorantad063daa2012-02-24 16:09:04 -0800109 <configuration>
Michael Spiegele7c54202014-11-26 20:40:21 -0500110 <classpathDependencyExcludes>
Michael Spiegel95f3fab2014-11-29 10:51:55 -0500111 <exclude>javax.measure:jsr-275</exclude>
Michael Spiegele7c54202014-11-26 20:40:21 -0500112 </classpathDependencyExcludes>
Tatu Salorantad063daa2012-02-24 16:09:04 -0800113 <excludes>
114 <exclude>com/fasterxml/jackson/failing/*.java</exclude>
115 </excludes>
116 </configuration>
117 </plugin>
simonetripodi451776a2012-08-24 14:21:58 +0200118
Tatu Salorantaf9ea9792017-09-09 17:27:52 -0700119 <!-- parent definitions should be ok, but need to add more links -->
Tatu Salorantad063daa2012-02-24 16:09:04 -0800120 <plugin>
121 <groupId>org.apache.maven.plugins</groupId>
simonetripodi451776a2012-08-24 14:21:58 +0200122 <artifactId>maven-javadoc-plugin</artifactId>
simonetripodi451776a2012-08-24 14:21:58 +0200123 <configuration>
Tatu Salorantaf9ea9792017-09-09 17:27:52 -0700124 <links combine.children="append">
Tatu Saloranta3ac8ccc2017-09-07 10:08:39 -0700125 <link>http://fasterxml.github.com/jackson-annotations/javadoc/2.9</link>
126 <link>http://fasterxml.github.com/jackson-core/javadoc/2.9</link>
simonetripodi451776a2012-08-24 14:21:58 +0200127 </links>
128 </configuration>
Tatu Salorantad063daa2012-02-24 16:09:04 -0800129 </plugin>
Tatu Salorantafe45e712013-12-13 20:09:00 -0800130
Tatu Salorantaf9ea9792017-09-09 17:27:52 -0700131 <!-- settings are fine, but needed to trigger execution! -->
Tatu Salorantafe45e712013-12-13 20:09:00 -0800132 <plugin>
Ben Gertzfield5780f882013-01-03 17:04:21 -0800133 <groupId>com.google.code.maven-replacer-plugin</groupId>
Ben Gertzfield66a12b62013-01-04 12:01:07 -0800134 <artifactId>replacer</artifactId>
Ben Gertzfield5780f882013-01-03 17:04:21 -0800135 </plugin>
Tatu Saloranta975e3602016-10-18 14:10:20 -0700136
137 <!-- 18-Oct-2016, tatu: Try to make coveralls work -->
138 <plugin>
139 <groupId>org.eluder.coveralls</groupId>
140 <artifactId>coveralls-maven-plugin</artifactId>
141 <version>4.3.0</version>
142 </plugin>
Tatu Saloranta90c43522011-12-22 23:25:27 -0800143 </plugins>
144 </build>
Tatu Saloranta65c83692011-12-24 18:15:07 -0800145
Tatu Salorantac3b37042014-05-20 12:47:01 -0700146 <reporting>
147 <plugins>
148 <plugin>
149 <groupId>org.codehaus.mojo</groupId>
150 <artifactId>cobertura-maven-plugin</artifactId>
151 </plugin>
152 </plugins>
153 </reporting>
154
Tatu Saloranta90c43522011-12-22 23:25:27 -0800155 <profiles>
Tatu Saloranta9af59042012-02-19 00:03:55 -0800156 <profile>
157 <id>release</id>
158 <properties>
159 <maven.test.skip>true</maven.test.skip>
160 <skipTests>true</skipTests>
161 </properties>
simonetripodi451776a2012-08-24 14:21:58 +0200162 </profile>
Tatu Saloranta90c43522011-12-22 23:25:27 -0800163 </profiles>
Tatu Saloranta90c43522011-12-22 23:25:27 -0800164
165</project>