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