<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.8.10</version>
  </parent>
  <groupId>com.fasterxml.jackson.jr</groupId>
  <artifactId>jackson-jr-parent</artifactId>
  <name>Parent pom for Jackson jr components</name>
  <version>2.8.10</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:git@github.com:FasterXML/jackson-jr.git</connection>
    <developerConnection>scm:git:git@github.com:FasterXML/jackson-jr.git</developerConnection>
    <url>http://github.com/FasterXML/jackson-jr</url>    
    <tag>jackson-jr-parent-2.8.10</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>

  <!-- the main managed depenendency, jackson-core, comes via jackson-bom (parent) -->

  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <scope>test</scope>
    </dependency>
  </dependencies>

</project>
