Blame SOURCES/jvnet-parent-4.pom

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