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