[jackson-core] 01/07: Install the jackson-parent POM
Emmanuel Bourg
ebourg-guest at moszumanska.debian.org
Thu Dec 15 14:39:37 UTC 2016
This is an automated email from the git hooks/post-receive script.
ebourg-guest pushed a commit to branch master
in repository jackson-core.
commit b33e8bf2fb5eb9535e283172588d3a43d41c5d7b
Author: Emmanuel Bourg <ebourg at apache.org>
Date: Thu Dec 15 15:26:19 2016 +0100
Install the jackson-parent POM
---
debian/changelog | 7 +
debian/jackson-parent-2.7.pom | 222 +++++++++++++++++
debian/maven.ignoreRules | 10 +
debian/maven.rules | 5 +-
debian/oss-parent-25.pom | 550 ++++++++++++++++++++++++++++++++++++++++++
debian/rules | 7 +
6 files changed, 799 insertions(+), 2 deletions(-)
diff --git a/debian/changelog b/debian/changelog
index b04f794..823f48a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+jackson-core (2.7.3-2) UNRELEASED; urgency=medium
+
+ * Team upload.
+ * Install the jackson-parent POM
+
+ -- Emmanuel Bourg <ebourg at apache.org> Thu, 15 Dec 2016 14:17:22 +0100
+
jackson-core (2.7.3-1) unstable; urgency=medium
* Team upload.
diff --git a/debian/jackson-parent-2.7.pom b/debian/jackson-parent-2.7.pom
new file mode 100644
index 0000000..d02f822
--- /dev/null
+++ b/debian/jackson-parent-2.7.pom
@@ -0,0 +1,222 @@
+<?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/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>com.fasterxml</groupId>
+ <artifactId>oss-parent</artifactId>
+ <version>25</version>
+ </parent>
+
+ <groupId>com.fasterxml.jackson</groupId>
+ <artifactId>jackson-parent</artifactId>
+ <version>2.7</version>
+ <packaging>pom</packaging>
+
+ <name>Jackson parent poms</name>
+ <description>Parent pom for all Jackson components</description>
+ <url>http://github.com/FasterXML/</url>
+ <organization>
+ <name>FasterXML</name>
+ <url>http://fasterxml.com/</url>
+ </organization>
+ <licenses>
+ <license>
+ <name>The Apache Software License, Version 2.0</name>
+ <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+ <distribution>repo</distribution>
+ </license>
+ </licenses>
+
+ <developers>
+ <developer>
+ <id>christophercurrie</id>
+ <name>Christopher Currie</name>
+ <email />
+ </developer>
+ <developer>
+ <id>prb</id>
+ <name>Paul Brown</name>
+ <email>prb at fasterxml.com</email>
+ </developer>
+ <developer>
+ <id>cowtowncoder</id>
+ <name>Tatu Saloranta</name>
+ <email>tatu at fasterxml.com</email>
+ </developer>
+ </developers>
+ <contributors>
+ <contributor>
+ <name>Simone Tripodi</name>
+ <email>simonetripodi at apache.org</email>
+ </contributor>
+ </contributors>
+
+ <scm>
+ <connection>scm:git:git at github.com:FasterXML/jackson-parent.git</connection>
+ <developerConnection>scm:git:git at github.com:FasterXML/jackson-parent.git</developerConnection>
+ <url>http://github.com/FasterXML/jackson-parent</url>
+ <tag>jackson-parent-2.7</tag>
+ </scm>
+
+ <properties>
+ <version.jackson.annotations>2.7.0</version.jackson.annotations>
+
+ <!-- 02-Oct-2015, tatu: Jackson 2.4 and above are Java 6 (earlier versions Java 5);
+ Jackson 2.7 and above Java 6 (with exception of `jackson-core`/`jackson-annotations` still Java 6)
+ -->
+ <javac.src.version>1.7</javac.src.version>
+ <javac.target.version>1.7</javac.target.version>
+ <!-- With 2.4+, include all debug info for the main executable; need to figure
+ out a way to build "non-debug" variants as well
+ -->
+ <javac.debuglevel>lines,source,vars</javac.debuglevel>
+
+ <!-- Versions for other dependencies -->
+ <version.junit>4.12</version.junit>
+
+ <!--
+ | For automatically generating PackageVersion.java. Your child pom.xml must define
+ | packageVersion.dir and packageVersion.package, and must set the phase of the
+ | process-packageVersion execution of maven-replacer-plugin to 'generate-sources'.
+ -->
+ <packageVersion.template.input>${basedir}/src/main/java/${packageVersion.dir}/PackageVersion.java.in</packageVersion.template.input>
+ <packageVersion.template.output>${generatedSourcesDir}/${packageVersion.dir}/PackageVersion.java</packageVersion.template.output>
+
+ </properties>
+
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>${version.junit}</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+
+ <dependencyManagement>
+ <dependencies>
+ <dependency>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-annotations</artifactId>
+ <version>${version.jackson.annotations}</version>
+ </dependency>
+ </dependencies>
+ </dependencyManagement>
+
+ <build>
+ <pluginManagement>
+ <plugins>
+
+ <!-- Jackson has stricter enforced requirements than parent pom -->
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-enforcer-plugin</artifactId>
+ <version>1.4.1</version>
+ <executions>
+ <execution>
+ <id>enforce-java</id>
+ <phase>validate</phase>
+ <goals>
+ <goal>enforce</goal>
+ </goals>
+ <configuration>
+ <rules>
+ <requireJavaVersion>
+ <version>[1.7,)</version>
+ <message>[ERROR] The currently supported version of Java is 1.7 or higher</message>
+ </requireJavaVersion>
+ <requireMavenVersion>
+ <version>[3.0,)</version>
+ <message>[ERROR] The currently supported version of Maven is 3.0 or higher</message>
+ </requireMavenVersion>
+ <requirePluginVersions>
+ <banLatest>true</banLatest>
+ <banRelease>true</banRelease>
+ <banSnapshots>true</banSnapshots>
+ <phases>clean,deploy,site</phases>
+ <message>[ERROR] Best Practice is to always define plugin versions!</message>
+ </requirePluginVersions>
+ </rules>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <!-- use of replacer plug-in specific to Jackson -->
+ <plugin>
+ <groupId>com.google.code.maven-replacer-plugin</groupId>
+ <artifactId>replacer</artifactId>
+ <version>${version.plugin.replacer}</version>
+ <executions>
+ <execution>
+ <id>process-packageVersion</id>
+ <goals>
+ <goal>replace</goal>
+ </goals>
+ <!--
+ | We explicitly omit 'phase' here so child poms can opt in to
+ | generating their PackageVersion.java file.
+ |
+ | If your child pom wants a PackageVersion.java file, define
+ | the 'packageVersion.dir' and 'packageVersion.package' properties
+ | and include the commented-out section in your child pom's plugin
+ | for this execution ID.
+ <phase>generate-sources</phase>
+ -->
+ </execution>
+ </executions>
+ <configuration>
+ <file>${packageVersion.template.input}</file>
+ <outputFile>${packageVersion.template.output}</outputFile>
+ <replacements>
+ <replacement>
+ <token>@package@</token>
+ <value>${packageVersion.package}</value>
+ </replacement>
+ <replacement>
+ <token>@projectversion@</token>
+ <value>${project.version}</value>
+ </replacement>
+ <replacement>
+ <token>@projectgroupid@</token>
+ <value>${project.groupId}</value>
+ </replacement>
+ <replacement>
+ <token>@projectartifactid@</token>
+ <value>${project.artifactId}</value>
+ </replacement>
+ </replacements>
+ </configuration>
+ </plugin>
+ <plugin>
+ <!-- Work around Eclipse incompatibility (http://code.google.com/p/maven-replacer-plugin/issues/detail?id=66) -->
+ <groupId>org.eclipse.m2e</groupId>
+ <artifactId>lifecycle-mapping</artifactId>
+ <version>1.0.0</version>
+ <configuration>
+ <lifecycleMappingMetadata>
+ <pluginExecutions>
+ <pluginExecution>
+ <pluginExecutionFilter>
+ <groupId>com.google.code.maven-replacer-plugin</groupId>
+ <artifactId>replacer</artifactId>
+ <versionRange>[${version.plugin.replacer},)</versionRange>
+ <goals>
+ <goal>replace</goal>
+ </goals>
+ </pluginExecutionFilter>
+ <action>
+ <execute>
+ <runOnIncremental>false</runOnIncremental>
+ </execute>
+ </action>
+ </pluginExecution>
+ </pluginExecutions>
+ </lifecycleMappingMetadata>
+ </configuration>
+ </plugin>
+ </plugins>
+ </pluginManagement>
+ </build>
+
+</project>
diff --git a/debian/maven.ignoreRules b/debian/maven.ignoreRules
index 15ebc7c..43877f5 100644
--- a/debian/maven.ignoreRules
+++ b/debian/maven.ignoreRules
@@ -1,5 +1,15 @@
com.google.code.maven-replacer-plugin replacer * * * *
+org.apache.maven.plugins maven-enforcer-plugin * * * *
org.apache.maven.plugins maven-javadoc-plugin * * * *
+org.apache.maven.plugins maven-release-plugin * * * *
+org.apache.maven.plugins maven-scm-plugin * * * *
+org.apache.maven.plugins maven-site-plugin * * * *
+org.apache.maven.scm maven-scm-manager-plexus * * * *
+org.apache.maven.scm maven-scm-provider-gitexe * * * *
org.apache.maven.wagon wagon-ssh-external * * * *
+org.codehaus.mojo build-helper-maven-plugin * * * *
+org.codehaus.mojo cobertura-maven-plugin * * * *
+org.eclipse.m2e lifecycle-mapping * * * *
org.kathrynhuxtable.maven.wagon wagon-gitsite * * * *
+org.sonatype.plugins nexus-maven-plugin * * * *
diff --git a/debian/maven.rules b/debian/maven.rules
index c837b7d..9dca012 100644
--- a/debian/maven.rules
+++ b/debian/maven.rules
@@ -1,3 +1,4 @@
-com.fasterxml.jackson.core jackson-core bundle s/2\..*/2.x/ * *
-junit junit jar s/4\..*/4.x/ * *
+junit junit jar s/.*/4.x/ * *
+com.fasterxml.jackson.core jackson-annotations * s/.*/2.x/ * *
+com.fasterxml.jackson.core jackson-core * s/.*/2.x/ * *
diff --git a/debian/oss-parent-25.pom b/debian/oss-parent-25.pom
new file mode 100644
index 0000000..c784916
--- /dev/null
+++ b/debian/oss-parent-25.pom
@@ -0,0 +1,550 @@
+<?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/maven-v4_0_0.xsd">
+
+ <modelVersion>4.0.0</modelVersion>
+
+ <groupId>com.fasterxml</groupId>
+ <artifactId>oss-parent</artifactId>
+ <version>25</version>
+ <packaging>pom</packaging>
+
+ <name>FasterXML.com parent pom</name>
+ <description>FasterXML.com parent pom</description>
+ <url>http://github.com/FasterXML/</url>
+ <organization>
+ <name>FasterXML</name>
+ <url>http://fasterxml.com/</url>
+ </organization>
+ <licenses>
+ <license>
+ <name>The Apache Software License, Version 2.0</name>
+ <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+ <distribution>repo</distribution>
+ </license>
+ </licenses>
+
+ <!-- to fill in mostly by children, but stupid Sonatype REQUIRES
+ one developer already here
+ -->
+ <developers>
+ <developer>
+ <id>cowtowncoder</id>
+ <name>Tatu Saloranta</name>
+ <email>tatu at fasterxml.com</email>
+ </developer>
+ </developers>
+
+ <scm>
+ <connection>scm:git:git at github.com:FasterXML/oss-parent.git</connection>
+ <developerConnection>scm:git:git at github.com:FasterXML/oss-parent.git</developerConnection>
+ <url>http://github.com/FasterXML/oss-parent</url>
+ <tag>oss-parent-25</tag>
+ </scm>
+ <issueManagement>
+ <system>GitHub Issue Management</system>
+ <url>https://github.com/FasterXML/${project.artifactId}/issues</url>
+ </issueManagement>
+
+ <distributionManagement>
+ <snapshotRepository>
+ <id>sonatype-nexus-snapshots</id>
+ <name>Sonatype Nexus Snapshots</name>
+ <url>https://oss.sonatype.org/content/repositories/snapshots</url>
+ </snapshotRepository>
+
+ <repository>
+ <id>sonatype-nexus-staging</id>
+ <name>Nexus Release Repository</name>
+ <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
+ </repository>
+ </distributionManagement>
+
+ <properties>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ <project.build.resourceEncoding>UTF-8</project.build.resourceEncoding>
+ <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
+
+ <!-- Use 1.6 as default baseline -->
+ <javac.src.version>1.6</javac.src.version>
+ <javac.target.version>1.6</javac.target.version>
+
+ <!-- By default, include all debug info; "vars" and "lines" both add 10-15% in size,
+ "source" very little
+ -->
+ <javac.debuglevel>lines,source,vars</javac.debuglevel>
+ <maven.build.timestamp.format>yyyy-MM-dd HH:mm:ssZ</maven.build.timestamp.format>
+ <!--
+ | Configuration properties for the OSGi maven-bundle-plugin
+ -->
+ <osgi.export>${project.groupId}.*;version=${project.version}</osgi.export>
+ <osgi.import>*</osgi.import>
+ <osgi.dynamicImport />
+ <osgi.private />
+ <osgi.requiredExecutionEnvironment />
+ <osgi.versionpolicy>${range;[===,=+);${@}}</osgi.versionpolicy>
+ <osgi.includeResource>{maven-resources}</osgi.includeResource>
+ <!--
+ | shared build/report plugins version
+ -->
+
+ <!-- 11-Jul-2015, tatu: For some reason version 2.5.4 fails when
+ used with Shade plugin (2.2 - 2.4); hence 2.5.3 is still used for Jackson 2.6
+ -->
+ <version.plugin.bundle>2.5.3</version.plugin.bundle>
+
+ <version.plugin.jar>2.5</version.plugin.jar>
+ <version.plugin.javadoc>2.9.1</version.plugin.javadoc>
+ <!-- 2.4.2 had issues in releasing non-snapshot versions -->
+ <version.plugin.release>2.5.2</version.plugin.release>
+ <version.plugin.replacer>1.5.2</version.plugin.replacer>
+ <version.plugin.shade>2.4</version.plugin.shade>
+ <version.plugin.surefire>2.17</version.plugin.surefire>
+
+ <javadoc.maxmemory>1g</javadoc.maxmemory>
+
+ <generatedSourcesDir>${project.build.directory}/generated-sources</generatedSourcesDir>
+
+ </properties>
+
+ <repositories>
+ <repository>
+ <id>sonatype-nexus-snapshots</id>
+ <name>Sonatype Nexus Snapshots</name>
+ <url>https://oss.sonatype.org/content/repositories/snapshots</url>
+ <releases>
+ <enabled>false</enabled>
+ </releases>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ </repository>
+ </repositories>
+
+ <build>
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-clean-plugin</artifactId>
+ <version>2.5</version>
+ </plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-resources-plugin</artifactId>
+ <version>2.6</version>
+ </plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-install-plugin</artifactId>
+ <version>2.3.1</version>
+ </plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-deploy-plugin</artifactId>
+ <version>2.7</version>
+ </plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-site-plugin</artifactId>
+ <version>3.1</version>
+ </plugin>
+
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>cobertura-maven-plugin</artifactId>
+ <version>2.6</version>
+ </plugin>
+
+ <plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-bundle-plugin</artifactId>
+ <version>${version.plugin.bundle}</version>
+ <configuration>
+ <instructions>
+ <!--
+ | stops the "uses" clauses being added to "Export-Package" manifest entry
+ -->
+ <_nouses>true</_nouses>
+ <!--
+ | Stop the JAVA_1_n_HOME variables from being treated as headers by Bnd
+ -->
+ <_removeheaders>Include-Resource,JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME,JAVA_1_7_HOME</_removeheaders>
+ <_versionpolicy>${osgi.versionpolicy}</_versionpolicy>
+ <Bundle-Name>${project.name}</Bundle-Name>
+ <Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName>
+ <Bundle-Description>${project.description}</Bundle-Description>
+ <Export-Package>${osgi.export}</Export-Package>
+ <Private-Package>${osgi.private}</Private-Package>
+ <Import-Package>${osgi.import}</Import-Package>
+ <DynamicImport-Package>${osgi.dynamicImport}</DynamicImport-Package>
+ <Include-Resource>${osgi.includeResource}</Include-Resource>
+ <Bundle-DocURL>${project.url}</Bundle-DocURL>
+ <Bundle-RequiredExecutionEnvironment>${osgi.requiredExecutionEnvironment}</Bundle-RequiredExecutionEnvironment>
+
+
+ <Implementation-Build-Date>${maven.build.timestamp}</Implementation-Build-Date>
+ <X-Compile-Source-JDK>${javac.src.version}</X-Compile-Source-JDK>
+ <X-Compile-Target-JDK>${javac.target.version}</X-Compile-Target-JDK>
+
+ <Implementation-Title>${project.name}</Implementation-Title>
+ <Implementation-Version>${project.version}</Implementation-Version>
+ <Implementation-Vendor-Id>${project.groupId}</Implementation-Vendor-Id>
+ <Implementation-Vendor>${project.organization.name}</Implementation-Vendor>
+
+ <Specification-Title>${project.name}</Specification-Title>
+ <Specification-Version>${project.version}</Specification-Version>
+ <Specification-Vendor>${project.organization.name}</Specification-Vendor>
+ </instructions>
+ </configuration>
+ </plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-release-plugin</artifactId>
+ <version>${version.plugin.release}</version>
+ <configuration>
+ <mavenExecutorId>forked-path</mavenExecutorId>
+ <useReleaseProfile>false</useReleaseProfile>
+ <arguments>-Prelease</arguments>
+ </configuration>
+ </plugin>
+
+ <plugin>
+ <groupId>org.sonatype.plugins</groupId>
+ <artifactId>nexus-maven-plugin</artifactId>
+ <version>2.1</version>
+ <configuration>
+ <nexusUrl>https://oss.sonatype.org/</nexusUrl>
+ <serverAuthId>sonatype-nexus-staging</serverAuthId>
+ </configuration>
+ </plugin>
+
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>build-helper-maven-plugin</artifactId>
+ <version>1.7</version>
+ </plugin>
+
+ </plugins>
+ </pluginManagement>
+
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-enforcer-plugin</artifactId>
+ <version>1.3.1</version>
+ <executions>
+ <execution>
+ <id>enforce-java</id>
+ <phase>validate</phase>
+ <goals>
+ <goal>enforce</goal>
+ </goals>
+ <configuration>
+ <rules>
+ <requireJavaVersion>
+ <version>[1.5,)</version>
+ <message>[ERROR] The currently supported version of Java is 1.5 or higher</message>
+ </requireJavaVersion>
+ <requireMavenVersion>
+ <version>[3.0,)</version>
+ <message>[ERROR] The currently supported version of Maven is 3.0 or higher</message>
+ </requireMavenVersion>
+ <requirePluginVersions>
+ <banLatest>true</banLatest>
+ <banRelease>true</banRelease>
+ <banSnapshots>true</banSnapshots>
+ <phases>clean,deploy,site</phases>
+ <message>[ERROR] Best Practice is to always define plugin versions!</message>
+ </requirePluginVersions>
+ </rules>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>3.2</version>
+ <configuration>
+ <source>${javac.src.version}</source>
+ <target>${javac.target.version}</target>
+ <showDeprecation>true</showDeprecation>
+ <showWarnings>true</showWarnings>
+ <optimize>true</optimize>
+ <!-- 16-Apr-2013, tatu: As per Nick W's suggestions, let's
+ use these to reduce jar size
+ -->
+ <debug>true</debug>
+ <debuglevel>${javac.debuglevel}</debuglevel>
+ </configuration>
+ </plugin>
+
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>build-helper-maven-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>add-generated-sources</id>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>add-source</goal>
+ </goals>
+ <configuration>
+ <sources>
+ <source>${generatedSourcesDir}</source>
+ </sources>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <version>${version.plugin.surefire}</version>
+ </plugin>
+
+ <plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-bundle-plugin</artifactId>
+ <version>${version.plugin.bundle}</version>
+ <extensions>true</extensions>
+ </plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <version>${version.plugin.jar}</version>
+ </plugin>
+ <plugin>
+ <artifactId>maven-site-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>attach-descriptor</id>
+ <goals>
+ <goal>attach-descriptor</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-scm-plugin</artifactId>
+ <version>1.9.1</version>
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.maven.scm</groupId>
+ <artifactId>maven-scm-provider-gitexe</artifactId>
+ <version>1.9.1</version>
+ </dependency>
+ </dependencies>
+ </plugin>
+ </plugins>
+
+ <extensions>
+ <extension>
+ <groupId>org.apache.maven.scm</groupId>
+ <artifactId>maven-scm-provider-gitexe</artifactId>
+ <version>1.9.1</version>
+ </extension>
+
+ <extension>
+ <groupId>org.apache.maven.scm</groupId>
+ <artifactId>maven-scm-manager-plexus</artifactId>
+ <version>1.9.1</version>
+ </extension>
+
+ <!-- WTH is this? -->
+ <extension>
+ <groupId>org.kathrynhuxtable.maven.wagon</groupId>
+ <artifactId>wagon-gitsite</artifactId>
+ <version>0.3.1</version>
+ </extension>
+ </extensions>
+ </build>
+
+ <reporting>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>${version.plugin.javadoc}</version>
+ <configuration>
+ <bootclasspath>${sun.boot.class.path}</bootclasspath>
+ <doclet>com.google.doclava.Doclava</doclet>
+ <useStandardDocletOptions>false</useStandardDocletOptions>
+ <additionalJOption>-J-Xmx1024m</additionalJOption>
+ <maxmemory>${javadoc.maxmemory}</maxmemory>
+ <links>
+ <link>http://docs.oracle.com/javase/7/docs/api/</link>
+ </links>
+ <docletArtifact>
+ <groupId>com.google.doclava</groupId>
+ <artifactId>doclava</artifactId>
+ <version>1.0.3</version>
+ </docletArtifact>
+ <additionalparam>
+ -hdf project.name "${project.name}"
+ -d ${project.reporting.outputDirectory}/apidocs
+ </additionalparam>
+ </configuration>
+ <reportSets>
+ <reportSet>
+ <id>default</id>
+ <reports>
+ <report>javadoc</report>
+ </reports>
+ </reportSet>
+ </reportSets>
+ </plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-project-info-reports-plugin</artifactId>
+ <version>2.5</version>
+ </plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jxr-plugin</artifactId>
+ <version>2.3</version>
+ </plugin>
+
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>jdepend-maven-plugin</artifactId>
+ <version>2.0-beta-2</version>
+ </plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-report-plugin</artifactId>
+ <version>${version.plugin.surefire}</version>
+ </plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-pmd-plugin</artifactId>
+ <version>2.7.1</version>
+ <configuration>
+ <linkXref>true</linkXref>
+ <minimumTokens>100</minimumTokens>
+ <targetJdk>1.5</targetJdk>
+ </configuration>
+ </plugin>
+
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>taglist-maven-plugin</artifactId>
+ <version>2.4</version>
+ <configuration>
+ <tagListOptions>
+ <tagClasses>
+ <tagClass>
+ <displayName>Todo Work</displayName>
+ <tags>
+ <tag>
+ <matchString>TODO</matchString>
+ <matchType>ignoreCase</matchType>
+ </tag>
+ <tag>
+ <matchString>FIXME</matchString>
+ <matchType>ignoreCase</matchType>
+ </tag>
+ </tags>
+ </tagClass>
+ </tagClasses>
+ </tagListOptions>
+ </configuration>
+ </plugin>
+ </plugins>
+ </reporting>
+
+ <profiles>
+ <profile>
+ <id>release</id>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-source-plugin</artifactId>
+ <!-- 2.2 has a bug, revert to 2.1.2 -->
+ <version>2.1.2</version>
+ <executions>
+ <execution>
+ <id>attach-sources</id>
+ <goals>
+ <goal>jar-no-fork</goal>
+ </goals>
+ <configuration>
+ <archive>
+ <manifest>
+ <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
+ <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
+ </manifest>
+ <manifestEntries>
+ <Implementation-Build-Date>${maven.build.timestamp}</Implementation-Build-Date>
+ <X-Compile-Source-JDK>${javac.src.version}</X-Compile-Source-JDK>
+ <X-Compile-Target-JDK>${javac.target.version}</X-Compile-Target-JDK>
+ </manifestEntries>
+ </archive>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>${version.plugin.javadoc}</version>
+ <executions>
+ <execution>
+ <id>attach-javadocs</id>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ <configuration>
+ <quiet>true</quiet>
+ <archive>
+ <manifest>
+ <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
+ <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
+ </manifest>
+ <manifestEntries>
+ <Implementation-Build-Date>${maven.build.timestamp}</Implementation-Build-Date>
+ <X-Compile-Source-JDK>${javac.src.version}</X-Compile-Source-JDK>
+ <X-Compile-Target-JDK>${javac.target.version}</X-Compile-Target-JDK>
+ </manifestEntries>
+ </archive>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-gpg-plugin</artifactId>
+ <version>1.4</version>
+ <executions>
+ <execution>
+ <id>sign-artifacts</id>
+ <phase>verify</phase>
+ <goals>
+ <goal>sign</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
+
+</project>
diff --git a/debian/rules b/debian/rules
index aba0005..978771b 100755
--- a/debian/rules
+++ b/debian/rules
@@ -11,6 +11,13 @@ override_dh_auto_configure:
sh debian/replace-generate.sh $(VERSION_FILE)
dh_auto_configure
+override_dh_auto_install:
+ dh_auto_install
+
+ # Install the parent poms (used by the other jackson packages)
+ mh_installpom -plibjackson2-core-java --keep-elements=build debian/oss-parent-25.pom
+ mh_installpom -plibjackson2-core-java --keep-elements=build debian/jackson-parent-2.7.pom
+
override_dh_auto_clean:
rm -f $(VERSION_FILE)
dh_auto_clean
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/jackson-core.git
More information about the pkg-java-commits
mailing list