5f9f43
5f9f43
5f9f43
  ~ Copyright (c) 2007-2012 Sonatype, Inc. All rights reserved.
5f9f43
  ~
5f9f43
  ~ This program is licensed to you under the Apache License Version 2.0,
5f9f43
  ~ and you may not use this file except in compliance with the Apache License Version 2.0.
5f9f43
  ~ You may obtain a copy of the Apache License Version 2.0 at http://www.apache.org/licenses/LICENSE-2.0.
5f9f43
  ~
5f9f43
  ~ Unless required by applicable law or agreed to in writing,
5f9f43
  ~ software distributed under the Apache License Version 2.0 is distributed on an
5f9f43
  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
5f9f43
  ~ See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
5f9f43
  -->
5f9f43
5f9f43
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5f9f43
  <modelVersion>4.0.0</modelVersion>
5f9f43
5f9f43
  <groupId>net.java</groupId>
5f9f43
  <artifactId>jvnet-parent</artifactId>
5f9f43
  <version>4</version>
5f9f43
  <packaging>pom</packaging>
5f9f43
5f9f43
  <name>Java.net Parent</name>
5f9f43
  <url>http://java.net/</url>
5f9f43
  <description>Java.net - The Source for Java Technology Collaboration</description>
5f9f43
5f9f43
  <scm>
5f9f43
    <connection>scm:git:git@github.com:sonatype/jvnet-parent.git</connection>
5f9f43
    <developerConnection>scm:git:git@github.com:sonatype/jvnet-parent.git</developerConnection>
5f9f43
    <url>https://github.com/sonatype/jvnet-parent</url>
5f9f43
  </scm>
5f9f43
5f9f43
  <distributionManagement>
5f9f43
    <snapshotRepository>
5f9f43
      <id>jvnet-nexus-snapshots</id>
5f9f43
      <name>Java.net Nexus Snapshots Repository</name>
5f9f43
      <url>${jvnetDistMgmtSnapshotsUrl}</url>
5f9f43
    </snapshotRepository>
5f9f43
    <repository>
5f9f43
      <id>jvnet-nexus-staging</id>
5f9f43
      <name>Java.net Nexus Staging Repository</name>
5f9f43
      <url>https://maven.java.net/service/local/staging/deploy/maven2/</url>
5f9f43
    </repository>
5f9f43
  </distributionManagement>
5f9f43
5f9f43
  <build>
5f9f43
    <pluginManagement>
5f9f43
      <plugins>
5f9f43
        <plugin>
5f9f43
          <groupId>org.apache.maven.plugins</groupId>
5f9f43
          <artifactId>maven-release-plugin</artifactId>
5f9f43
          <configuration>
5f9f43
            <mavenExecutorId>forked-path</mavenExecutorId>
5f9f43
            <useReleaseProfile>false</useReleaseProfile>
5f9f43
            <arguments>-Pjvnet-release ${release.arguments}</arguments>
5f9f43
          </configuration>
5f9f43
        </plugin>
5f9f43
      </plugins>
5f9f43
    </pluginManagement>
5f9f43
  </build>
5f9f43
5f9f43
  <properties>
5f9f43
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
5f9f43
    <jvnetDistMgmtSnapshotsUrl>https://maven.java.net/content/repositories/snapshots/</jvnetDistMgmtSnapshotsUrl>
5f9f43
  </properties>
5f9f43
5f9f43
  <profiles>
5f9f43
    <profile>
5f9f43
      <id>jvnet-release</id>
5f9f43
      <build>
5f9f43
        <plugins>
5f9f43
          <plugin>
5f9f43
            <groupId>org.apache.maven.plugins</groupId>
5f9f43
            <artifactId>maven-source-plugin</artifactId>
5f9f43
            <executions>
5f9f43
              <execution>
5f9f43
                <id>attach-sources</id>
5f9f43
                <goals>
5f9f43
                  <goal>jar-no-fork</goal>
5f9f43
                </goals>
5f9f43
              </execution>
5f9f43
            </executions>
5f9f43
          </plugin>
5f9f43
          <plugin>
5f9f43
            <groupId>org.apache.maven.plugins</groupId>
5f9f43
            <artifactId>maven-javadoc-plugin</artifactId>
5f9f43
            <executions>
5f9f43
              <execution>
5f9f43
                <id>attach-javadocs</id>
5f9f43
                <goals>
5f9f43
                  <goal>jar</goal>
5f9f43
                </goals>
5f9f43
              </execution>
5f9f43
            </executions>
5f9f43
          </plugin>
5f9f43
          <plugin>
5f9f43
            <groupId>org.apache.maven.plugins</groupId>
5f9f43
            <artifactId>maven-enforcer-plugin</artifactId>
5f9f43
            <executions>
5f9f43
              <execution>
5f9f43
                <id>enforce-maven</id>
5f9f43
                <goals>
5f9f43
                  <goal>enforce</goal>
5f9f43
                </goals>
5f9f43
                <configuration>
5f9f43
                  <rules>
5f9f43
                    <requireMavenVersion>
5f9f43
                      <version>(,2.1.0),(2.1.0,2.2.0),(2.2.0,)</version>
5f9f43
                      <message>Maven 2.1.0 and 2.2.0 produce incorrect GPG signatures
5f9f43
                        and checksums respectively.
5f9f43
                      </message>
5f9f43
                    </requireMavenVersion>
5f9f43
                  </rules>
5f9f43
                </configuration>
5f9f43
              </execution>
5f9f43
            </executions>
5f9f43
          </plugin>
5f9f43
          <plugin>
5f9f43
            <groupId>org.apache.maven.plugins</groupId>
5f9f43
            <artifactId>maven-gpg-plugin</artifactId>
5f9f43
            <executions>
5f9f43
              <execution>
5f9f43
                <id>sign-artifacts</id>
5f9f43
                <phase>verify</phase>
5f9f43
                <goals>
5f9f43
                  <goal>sign</goal>
5f9f43
                </goals>
5f9f43
              </execution>
5f9f43
            </executions>
5f9f43
          </plugin>
5f9f43
        </plugins>
5f9f43
      </build>
5f9f43
    </profile>
5f9f43
    <profile>
5f9f43
      <id>snapshots</id>
5f9f43
      <repositories>
5f9f43
        <repository>
5f9f43
          <id>jvnet-nexus-snapshots</id>
5f9f43
          <name>Java.net Nexus Snapshots Repository</name>
5f9f43
          <url>https://maven.java.net/content/repositories/snapshots</url>
5f9f43
          <releases>
5f9f43
            <enabled>false</enabled>
5f9f43
          </releases>
5f9f43
          <snapshots>
5f9f43
            <enabled>true</enabled>
5f9f43
          </snapshots>
5f9f43
        </repository>
5f9f43
      </repositories>
5f9f43
      <pluginRepositories>
5f9f43
        <pluginRepository>
5f9f43
          <id>jvnet-nexus-snapshots</id>
5f9f43
          <name>Java.net Nexus Snapshots Repository</name>
5f9f43
          <url>https://maven.java.net/content/repositories/snapshots</url>
5f9f43
          <releases>
5f9f43
            <enabled>false</enabled>
5f9f43
          </releases>
5f9f43
          <snapshots>
5f9f43
            <enabled>true</enabled>
5f9f43
          </snapshots>
5f9f43
        </pluginRepository>
5f9f43
      </pluginRepositories>
5f9f43
    </profile>
5f9f43
    <profile>
5f9f43
      <id>staging</id>
5f9f43
      <activation>
5f9f43
        <activeByDefault>false</activeByDefault>
5f9f43
      </activation>
5f9f43
      <repositories>
5f9f43
        <repository>
5f9f43
          <id>jvnet-nexus-staging</id>
5f9f43
          <name>Java.net Staging Repositoriy</name>
5f9f43
          <url>https://maven.java.net/content/repositories/staging/</url>
5f9f43
          <releases>
5f9f43
            <enabled>true</enabled>
5f9f43
          </releases>
5f9f43
          <snapshots>
5f9f43
            <enabled>false</enabled>
5f9f43
          </snapshots>
5f9f43
        </repository>
5f9f43
      </repositories>
5f9f43
      <pluginRepositories>
5f9f43
        <pluginRepository>
5f9f43
          <id>jvnet-nexus-staging</id>
5f9f43
          <name>Java.net Staging Repositoriy</name>
5f9f43
          <url>https://maven.java.net/content/repositories/staging/</url>
5f9f43
          <releases>
5f9f43
            <enabled>true</enabled>
5f9f43
          </releases>
5f9f43
          <snapshots>
5f9f43
            <enabled>false</enabled>
5f9f43
          </snapshots>
5f9f43
        </pluginRepository>
5f9f43
      </pluginRepositories>
5f9f43
    </profile>
5f9f43
    <profile>
5f9f43
      <id>promoted</id>
5f9f43
      <activation>
5f9f43
        <activeByDefault>false</activeByDefault>
5f9f43
      </activation>
5f9f43
      <repositories>
5f9f43
        <repository>
5f9f43
          <id>jvnet-nexus-promoted</id>
5f9f43
          <name>Java.net Promoted Repositories</name>
5f9f43
          <url>https://maven.java.net/content/repositories/promoted/</url>
5f9f43
          <releases>
5f9f43
            <enabled>true</enabled>
5f9f43
          </releases>
5f9f43
          <snapshots>
5f9f43
            <enabled>false</enabled>
5f9f43
          </snapshots>
5f9f43
        </repository>
5f9f43
      </repositories>
5f9f43
      <pluginRepositories>
5f9f43
        <pluginRepository>
5f9f43
          <id>jvnet-nexus-promoted</id>
5f9f43
          <name>Java.net Promoted Repositories</name>
5f9f43
          <url>https://maven.java.net/content/repositories/promoted/</url>
5f9f43
          <releases>
5f9f43
            <enabled>true</enabled>
5f9f43
          </releases>
5f9f43
          <snapshots>
5f9f43
            <enabled>false</enabled>
5f9f43
          </snapshots>
5f9f43
        </pluginRepository>
5f9f43
      </pluginRepositories>
5f9f43
    </profile>
5f9f43
  </profiles>
5f9f43
</project>