820ac1
820ac1
820ac1
820ac1
    Copyright (c) 2008-2013 Sonatype, Inc. All rights reserved.
820ac1
820ac1
    This program is licensed to you under the Apache License Version 2.0,
820ac1
    and you may not use this file except in compliance with the Apache License Version 2.0.
820ac1
    You may obtain a copy of the Apache License Version 2.0 at http://www.apache.org/licenses/LICENSE-2.0.
820ac1
820ac1
    Unless required by applicable law or agreed to in writing,
820ac1
    software distributed under the Apache License Version 2.0 is distributed on an
820ac1
    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
820ac1
    See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
820ac1
820ac1
-->
820ac1
<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">
820ac1
  <modelVersion>4.0.0</modelVersion>
820ac1
820ac1
  <groupId>org.sonatype.forge</groupId>
820ac1
  <artifactId>forge-parent</artifactId>
820ac1
  <packaging>pom</packaging>
820ac1
  <version>38</version>
820ac1
820ac1
  <name>${project.artifactId}</name>
820ac1
  <description>${project.name}</description>
820ac1
  <inceptionYear>2008</inceptionYear>
820ac1
  <url>http://forge.sonatype.com/</url>
820ac1
820ac1
  <organization>
820ac1
    <name>Sonatype, Inc.</name>
820ac1
    <url>http://www.sonatype.com/</url>
820ac1
  </organization>
820ac1
820ac1
  <licenses>
820ac1
    <license>
820ac1
      <name>ASLv2</name>
820ac1
      <url>http://www.apache.org/licenses/LICENSE-2.0</url>
820ac1
      <distribution>repo</distribution>
820ac1
    </license>
820ac1
  </licenses>
820ac1
820ac1
  <developers>
820ac1
    <developer>
820ac1
      <name>Sonatype, Inc.</name>
820ac1
      <organization>Sonatype, Inc.</organization>
820ac1
    </developer>
820ac1
  </developers>
820ac1
820ac1
  <scm>
820ac1
    <connection>scm:git:git://github.com/sonatype/oss-parents.git</connection>
820ac1
    <url>https://github.com/sonatype/oss-parents</url>
820ac1
    <developerConnection>scm:git:git@github.com:sonatype/oss-parents.git</developerConnection>
820ac1
  </scm>
820ac1
820ac1
  <ciManagement>
820ac1
    <system>Bamboo</system>
820ac1
    <url>https://bamboo.zion.sonatype.com</url>
820ac1
  </ciManagement>
820ac1
820ac1
  <issueManagement>
820ac1
    <system>Jira</system>
820ac1
    <url>https://issues.sonatype.org</url>
820ac1
  </issueManagement>
820ac1
820ac1
  <prerequisites>
820ac1
    <maven>3.0</maven>
820ac1
  </prerequisites>
820ac1
820ac1
  <properties>
820ac1
    <nexusUrl>https://repository.sonatype.org/</nexusUrl>
820ac1
    <forgeReleaseId>forge-releases</forgeReleaseId>
820ac1
    <forgeReleaseUrl>https://repository.sonatype.org/service/local/staging/deploy/maven2</forgeReleaseUrl>
820ac1
    <forgeSnapshotId>forge-snapshots</forgeSnapshotId>
820ac1
    <forgeSnapshotUrl>https://repository.sonatype.org/content/repositories/snapshots</forgeSnapshotUrl>
820ac1
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
820ac1
    <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
820ac1
    <maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile>
820ac1
    <surefire.failIfNoSpecifiedTests>false</surefire.failIfNoSpecifiedTests>
820ac1
    <localCheckout>true</localCheckout>
820ac1
    <pushChanges>false</pushChanges>
820ac1
    <failsafe.timeout>600</failsafe.timeout>
820ac1
    <nexus-staging.version>1.4.4</nexus-staging.version>
820ac1
    <maven.compiler.source>1.6</maven.compiler.source>
820ac1
    <maven.compiler.target>1.6</maven.compiler.target>
820ac1
  </properties>
820ac1
820ac1
  <distributionManagement>
820ac1
    <repository>
820ac1
      <id>${forgeReleaseId}</id>
820ac1
      <url>${forgeReleaseUrl}</url>
820ac1
    </repository>
820ac1
    <snapshotRepository>
820ac1
      <id>${forgeSnapshotId}</id>
820ac1
      <url>${forgeSnapshotUrl}</url>
820ac1
    </snapshotRepository>
820ac1
  </distributionManagement>
820ac1
820ac1
  <build>
820ac1
820ac1
    <defaultGoal>install</defaultGoal>
820ac1
820ac1
    <resources>
820ac1
      <resource>
820ac1
        <directory>${project.basedir}/src/main/resources</directory>
820ac1
        <filtering>false</filtering>
820ac1
        <includes>
820ac1
          <include>**/*</include>
820ac1
        </includes>
820ac1
      </resource>
820ac1
820ac1
      <resource>
820ac1
        <directory>${project.basedir}/src/main/filtered-resources</directory>
820ac1
        <filtering>true</filtering>
820ac1
        <includes>
820ac1
          <include>**/*</include>
820ac1
        </includes>
820ac1
      </resource>
820ac1
    </resources>
820ac1
820ac1
    <testResources>
820ac1
      <testResource>
820ac1
        <directory>${project.basedir}/src/test/resources</directory>
820ac1
        <filtering>false</filtering>
820ac1
        <includes>
820ac1
          <include>**/*</include>
820ac1
        </includes>
820ac1
      </testResource>
820ac1
820ac1
      <testResource>
820ac1
        <directory>${project.basedir}/src/test/filtered-resources</directory>
820ac1
        <filtering>true</filtering>
820ac1
        <includes>
820ac1
          <include>**/*</include>
820ac1
        </includes>
820ac1
      </testResource>
820ac1
    </testResources>
820ac1
820ac1
    <pluginManagement>
820ac1
      <plugins>
820ac1
        <plugin>
820ac1
          <groupId>org.codehaus.mojo</groupId>
820ac1
          <artifactId>animal-sniffer-maven-plugin</artifactId>
820ac1
          <version>1.9</version>
820ac1
        </plugin>
820ac1
        <plugin>
820ac1
          <groupId>org.codehaus.mojo</groupId>
820ac1
          <artifactId>build-helper-maven-plugin</artifactId>
820ac1
          <version>1.7</version>
820ac1
        </plugin>
820ac1
        <plugin>
820ac1
          <groupId>org.apache.maven.plugins</groupId>
820ac1
          <artifactId>maven-antrun-plugin</artifactId>
820ac1
          <version>1.7</version>
820ac1
        </plugin>
820ac1
        <plugin>
820ac1
          <groupId>org.apache.maven.plugins</groupId>
820ac1
          <artifactId>maven-assembly-plugin</artifactId>
820ac1
          <version>2.4</version>
820ac1
          <configuration>
820ac1
            <tarLongFileMode>gnu</tarLongFileMode>
820ac1
          </configuration>
820ac1
        </plugin>
820ac1
        <plugin>
820ac1
          <groupId>org.apache.felix</groupId>
820ac1
          <artifactId>maven-bundle-plugin</artifactId>
820ac1
          <version>2.3.7</version>
820ac1
          <configuration>
820ac1
            <instructions>
820ac1
              
820ac1
              <Bundle-Description>${project.description}</Bundle-Description>
820ac1
            </instructions>
820ac1
          </configuration>
820ac1
        </plugin>
820ac1
        <plugin>
820ac1
          <groupId>org.apache.maven.plugins</groupId>
820ac1
          <artifactId>maven-clean-plugin</artifactId>
820ac1
          <version>2.5</version>
820ac1
        </plugin>
820ac1
        <plugin>
820ac1
          <groupId>org.apache.maven.plugins</groupId>
820ac1
          <artifactId>maven-compiler-plugin</artifactId>
820ac1
          <version>3.0</version>
820ac1
          <configuration>
820ac1
            <source>${maven.compiler.source}</source>
820ac1
            <target>${maven.compiler.target}</target>
820ac1
          </configuration>
820ac1
        </plugin>
820ac1
        <plugin>
820ac1
          <groupId>org.apache.maven.plugins</groupId>
820ac1
          <artifactId>maven-dependency-plugin</artifactId>
820ac1
          <version>2.5.1</version>
820ac1
        </plugin>
820ac1
        <plugin>
820ac1
          <groupId>org.apache.maven.plugins</groupId>
820ac1
          <artifactId>maven-deploy-plugin</artifactId>
820ac1
          <version>2.7</version>
820ac1
        </plugin>
820ac1
        <plugin>
820ac1
          <groupId>org.apache.maven.plugins</groupId>
820ac1
          <artifactId>maven-enforcer-plugin</artifactId>
820ac1
          <version>1.2</version>
820ac1
        </plugin>
820ac1
        <plugin>
820ac1
          <groupId>org.codehaus.mojo</groupId>
820ac1
          <artifactId>exec-maven-plugin</artifactId>
820ac1
          <version>1.2.1</version>
820ac1
        </plugin>
820ac1
        <plugin>
820ac1
          <groupId>org.apache.maven.plugins</groupId>
820ac1
          <artifactId>maven-failsafe-plugin</artifactId>
820ac1
          <version>2.13</version>
820ac1
          <configuration>
820ac1
            <redirectTestOutputToFile>${maven.test.redirectTestOutputToFile}</redirectTestOutputToFile>
820ac1
            <forkMode>always</forkMode>
820ac1
            <forkedProcessTimeoutInSeconds>${failsafe.timeout}</forkedProcessTimeoutInSeconds>
820ac1
            <systemPropertyVariables>
820ac1
              <java.awt.headless>true</java.awt.headless>
820ac1
              
820ac1
              <java.io.tmpdir>${java.io.tmpdir}</java.io.tmpdir>
820ac1
            </systemPropertyVariables>
820ac1
          </configuration>
820ac1
        </plugin>
820ac1
        <plugin>
820ac1
          <groupId>org.apache.maven.plugins</groupId>
820ac1
          <artifactId>maven-gpg-plugin</artifactId>
820ac1
          <version>1.4</version>
820ac1
        </plugin>
820ac1
        <plugin>
820ac1
          <groupId>org.apache.maven.plugins</groupId>
820ac1
          <artifactId>maven-install-plugin</artifactId>
820ac1
          <version>2.4</version>
820ac1
        </plugin>
820ac1
        <plugin>
820ac1
          <groupId>org.apache.maven.plugins</groupId>
820ac1
          <artifactId>maven-invoker-plugin</artifactId>
820ac1
          <version>1.7</version>
820ac1
        </plugin>
820ac1
        <plugin>
820ac1
          <groupId>org.apache.maven.plugins</groupId>
820ac1
          <artifactId>maven-jar-plugin</artifactId>
820ac1
          <version>2.4</version>
820ac1
          <configuration>
820ac1
            <archive>
820ac1
              <manifest>
820ac1
                <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
820ac1
                <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
820ac1
              </manifest>
820ac1
            </archive>
820ac1
          </configuration>
820ac1
        </plugin>
820ac1
        <plugin>
820ac1
          <groupId>org.apache.maven.plugins</groupId>
820ac1
          <artifactId>maven-javadoc-plugin</artifactId>
820ac1
          <version>2.9</version>
820ac1
        </plugin>
820ac1
        
820ac1
        <plugin>
820ac1
          <groupId>com.mycila.maven-license-plugin</groupId>
820ac1
          <artifactId>maven-license-plugin</artifactId>
820ac1
          <version>1.9.0</version>
820ac1
          <configuration>
820ac1
            <encoding>UTF-8</encoding>
820ac1
            <strictCheck>true</strictCheck>
820ac1
            <useDefaultExcludes>false</useDefaultExcludes>
820ac1
            <header>${project.basedir}/header.txt</header>
820ac1
            <includes>
820ac1
              <include>**/pom.xml</include>
820ac1
              <include>**/*.xml</include>
820ac1
              <include>**/*.xsd</include>
820ac1
              <include>**/*.xjb</include>
820ac1
              <include>**/*.properties</include>
820ac1
              <include>**/*.ini</include>
820ac1
              <include>**/*.java</include>
820ac1
              <include>**/*.groovy</include>
820ac1
              <include>**/*.scala</include>
820ac1
              <include>**/*.aj</include>
820ac1
              <include>**/*.js</include>
820ac1
              <include>**/*.css</include>
820ac1
              <include>**/*.help</include>
820ac1
              <include>**/*.proto</include>
820ac1
              <include>**/*.sm</include>
820ac1
              <include>**/*.bat</include>
820ac1
              <include>**/*.xsl</include>
820ac1
              <include>**/*.html</include>
820ac1
              <include>**/*.vm</include>
820ac1
              <include>**/*.md</include>
820ac1
            </includes>
820ac1
            <excludes>
820ac1
              <exclude>**/target/**</exclude>
820ac1
              <exclude>**/.*/**</exclude>
820ac1
              <exclude>**/dependency-reduced-pom.xml</exclude>
820ac1
              <exclude>**/nbactions*.xml</exclude>
820ac1
              <exclude>**/nb-configuration.xml</exclude>
820ac1
              <exclude>**/atlassian-ide-plugin.xml</exclude>
820ac1
              <exclude>**/release.properties</exclude>
820ac1
              <exclude>**/META-INF/services/**</exclude>
820ac1
            </excludes>
820ac1
            <mapping>
820ac1
              <aj>JAVADOC_STYLE</aj>
820ac1
              <groovy>JAVADOC_STYLE</groovy>
820ac1
              <help>SCRIPT_STYLE</help>
820ac1
              <ini>SCRIPT_STYLE</ini>
820ac1
              <java>SLASHSTAR_STYLE</java>
820ac1
              <md>XML_STYLE</md>
820ac1
              <proto>DOUBLESLASH_STYLE</proto>
820ac1
              <scala>SLASHSTAR_STYLE</scala>
820ac1
              <sm>DOUBLESLASH_STYLE</sm>
820ac1
              <vm>SHARPSTAR_STYLE</vm>
820ac1
              <xjb>XML_STYLE</xjb>
820ac1
            </mapping>
820ac1
            <aggregate>true</aggregate>
820ac1
            <goals>
820ac1
              <goal>check</goal>
820ac1
            </goals>
820ac1
          </configuration>
820ac1
        </plugin>
820ac1
        <plugin>
820ac1
          <groupId>org.apache.maven.plugins</groupId>
820ac1
          <artifactId>maven-plugin-plugin</artifactId>
820ac1
          <version>3.2</version>
820ac1
        </plugin>
820ac1
        <plugin>
820ac1
          <groupId>org.apache.maven.plugins</groupId>
820ac1
          <artifactId>maven-release-plugin</artifactId>
820ac1
          <version>2.2.1</version>
820ac1
          <configuration>
820ac1
            <autoVersionSubmodules>true</autoVersionSubmodules>
820ac1
            <goals>deploy</goals>
820ac1
            
820ac1
            <localCheckout>${localCheckout}</localCheckout>
820ac1
            <pushChanges>${pushChanges}</pushChanges>
820ac1
            
820ac1
            <mavenExecutorId>forked-path</mavenExecutorId>
820ac1
            <releaseProfiles>release</releaseProfiles>
820ac1
            <useReleaseProfile>false</useReleaseProfile>
820ac1
          </configuration>
820ac1
        </plugin>
820ac1
        <plugin>
820ac1
          <groupId>org.apache.maven.plugins</groupId>
820ac1
          <artifactId>maven-remote-resources-plugin</artifactId>
820ac1
          <version>1.4</version>
820ac1
        </plugin>
820ac1
        <plugin>
820ac1
          <groupId>org.apache.maven.plugins</groupId>
820ac1
          <artifactId>maven-repository-plugin</artifactId>
820ac1
          <version>2.3.1</version>
820ac1
        </plugin>
820ac1
        <plugin>
820ac1
          <groupId>org.apache.maven.plugins</groupId>
820ac1
          <artifactId>maven-resources-plugin</artifactId>
820ac1
          <version>2.6</version>
820ac1
        </plugin>
820ac1
        <plugin>
820ac1
          <groupId>org.apache.maven.plugins</groupId>
820ac1
          <artifactId>maven-scm-plugin</artifactId>
820ac1
          <version>1.8.1</version>
820ac1
        </plugin>
820ac1
        <plugin>
820ac1
          <groupId>org.apache.maven.plugins</groupId>
820ac1
          <artifactId>maven-shade-plugin</artifactId>
820ac1
          <version>2.1</version>
820ac1
        </plugin>
820ac1
        <plugin>
820ac1
          <groupId>org.apache.maven.plugins</groupId>
820ac1
          <artifactId>maven-site-plugin</artifactId>
820ac1
          <version>3.2</version>
820ac1
        </plugin>
820ac1
        <plugin>
820ac1
          <groupId>org.apache.maven.plugins</groupId>
820ac1
          <artifactId>maven-source-plugin</artifactId>
820ac1
          <version>2.2.1</version>
820ac1
        </plugin>
820ac1
        <plugin>
820ac1
          <groupId>org.sonatype.plugins</groupId>
820ac1
          <artifactId>nexus-staging-maven-plugin</artifactId>
820ac1
          <version>${nexus-staging.version}</version>
820ac1
          <extensions>true</extensions>
820ac1
          <configuration>
820ac1
            <nexusUrl>${nexusUrl}</nexusUrl>
820ac1
            <keepStagingRepositoryOnCloseRuleFailure>true</keepStagingRepositoryOnCloseRuleFailure>
820ac1
            <tags>
820ac1
              <localUsername>${env.USER}</localUsername>
820ac1
              <javaVersion>${java.version}</javaVersion>
820ac1
            </tags>
820ac1
          </configuration>
820ac1
        </plugin>
820ac1
        <plugin>
820ac1
          <groupId>org.apache.maven.plugins</groupId>
820ac1
          <artifactId>maven-surefire-plugin</artifactId>
820ac1
          <version>2.13</version>
820ac1
          <configuration>
820ac1
            <redirectTestOutputToFile>${maven.test.redirectTestOutputToFile}</redirectTestOutputToFile>
820ac1
            
820ac1
            <failIfNoSpecifiedTests>${surefire.failIfNoSpecifiedTests}</failIfNoSpecifiedTests>
820ac1
            <systemPropertyVariables>
820ac1
              <java.awt.headless>true</java.awt.headless>
820ac1
              
820ac1
              <java.io.tmpdir>${java.io.tmpdir}</java.io.tmpdir>
820ac1
            </systemPropertyVariables>
820ac1
          </configuration>
820ac1
        </plugin>
820ac1
        <plugin>
820ac1
          <groupId>org.apache.maven.plugins</groupId>
820ac1
          <artifactId>maven-war-plugin</artifactId>
820ac1
          <version>2.3</version>
820ac1
        </plugin>
820ac1
        <plugin>
820ac1
          <groupId>org.codehaus.modello</groupId>
820ac1
          <artifactId>modello-maven-plugin</artifactId>
820ac1
          <version>1.6</version>
820ac1
          <configuration>
820ac1
            <useJava5>true</useJava5>
820ac1
          </configuration>
820ac1
        </plugin>
820ac1
        <plugin>
820ac1
          <groupId>org.sonatype.plugins</groupId>
820ac1
          <artifactId>sisu-maven-plugin</artifactId>
820ac1
          <version>1.1</version>
820ac1
        </plugin>
820ac1
      </plugins>
820ac1
    </pluginManagement>
820ac1
    <plugins>
820ac1
      <plugin>
820ac1
        <groupId>org.sonatype.plugins</groupId>
820ac1
        <artifactId>nexus-staging-maven-plugin</artifactId>
820ac1
        <configuration>
820ac1
          <serverId>${forgeSnapshotId}</serverId>
820ac1
        </configuration>
820ac1
      </plugin>
820ac1
      <plugin>
820ac1
        <groupId>org.apache.maven.plugins</groupId>
820ac1
        <artifactId>maven-source-plugin</artifactId>
820ac1
        <executions>
820ac1
          <execution>
820ac1
            <goals>
820ac1
              <goal>jar-no-fork</goal>
820ac1
            </goals>
820ac1
            <configuration>
820ac1
              <includePom>true</includePom>
820ac1
            </configuration>
820ac1
          </execution>
820ac1
        </executions>
820ac1
      </plugin>
820ac1
    </plugins>
820ac1
  </build>
820ac1
820ac1
  <profiles>
820ac1
    <profile>
820ac1
      <id>release</id>
820ac1
      <build>
820ac1
        <plugins>
820ac1
          
820ac1
          <plugin>
820ac1
            <groupId>org.apache.maven.plugins</groupId>
820ac1
            <artifactId>maven-deploy-plugin</artifactId>
820ac1
            <configuration>
820ac1
              <updateReleaseInfo>true</updateReleaseInfo>
820ac1
            </configuration>
820ac1
          </plugin>
820ac1
          
820ac1
          <plugin>
820ac1
            <groupId>org.apache.maven.plugins</groupId>
820ac1
            <artifactId>maven-gpg-plugin</artifactId>
820ac1
            <configuration>
820ac1
              
820ac1
              <passphrase>${gpg.passphrase}</passphrase>
820ac1
              
820ac1
              <useAgent>true</useAgent>
820ac1
            </configuration>
820ac1
            <executions>
820ac1
              <execution>
820ac1
                <goals>
820ac1
                  <goal>sign</goal>
820ac1
                </goals>
820ac1
              </execution>
820ac1
            </executions>
820ac1
          </plugin>
820ac1
          <plugin>
820ac1
            <groupId>org.apache.maven.plugins</groupId>
820ac1
            <artifactId>maven-javadoc-plugin</artifactId>
820ac1
            <executions>
820ac1
              <execution>
820ac1
                <id>attach-javadocs</id>
820ac1
                <goals>
820ac1
                  <goal>jar</goal>
820ac1
                </goals>
820ac1
              </execution>
820ac1
            </executions>
820ac1
          </plugin>
820ac1
          <plugin>
820ac1
            <groupId>org.sonatype.plugins</groupId>
820ac1
            <artifactId>nexus-staging-maven-plugin</artifactId>
820ac1
            <configuration>
820ac1
              
820ac1
              <serverId>${forgeReleaseId}</serverId>
820ac1
              <updateReleaseInfo>true</updateReleaseInfo>
820ac1
            </configuration>
820ac1
          </plugin>
820ac1
        </plugins>
820ac1
      </build>
820ac1
    </profile>
820ac1
  </profiles>
820ac1
820ac1
</project>