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