Blame SOURCES/codehaus-parent-4.pom

fa81f2
fa81f2
fa81f2
  ~ Copyright (c) 2007-2011 Sonatype, Inc. All rights reserved.
fa81f2
  ~
fa81f2
  ~ This program is licensed to you under the Apache License Version 2.0,
fa81f2
  ~ and you may not use this file except in compliance with the Apache License Version 2.0.
fa81f2
  ~ You may obtain a copy of the Apache License Version 2.0 at http://www.apache.org/licenses/LICENSE-2.0.
fa81f2
  ~
fa81f2
  ~ Unless required by applicable law or agreed to in writing,
fa81f2
  ~ software distributed under the Apache License Version 2.0 is distributed on an
fa81f2
  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
fa81f2
  ~ See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
fa81f2
  -->
fa81f2
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
fa81f2
	<modelVersion>4.0.0</modelVersion>
fa81f2
fa81f2
	<groupId>org.codehaus</groupId>
fa81f2
	<artifactId>codehaus-parent</artifactId>
fa81f2
	<version>4</version>
fa81f2
	<packaging>pom</packaging>
fa81f2
fa81f2
	<name>Codehaus Parent</name>
fa81f2
	<url>http://codehaus.org/</url>
fa81f2
	<description>The Codehaus is a collaborative environment for building open source projects with a strong emphasis on modern languages, focussed on quality components that meet real world needs. </description>
fa81f2
fa81f2
	<scm>
fa81f2
		<connection>scm:git:git@github.com:sonatype/codehaus-parent.git</connection>
fa81f2
		<developerConnection>scm:git:git@github.com:sonatype/codehaus-parent.git</developerConnection>
fa81f2
		<url>https://github.com/sonatype/codehaus-parent</url>
fa81f2
	</scm>
fa81f2
fa81f2
	<repositories>
fa81f2
		<repository>
fa81f2
			<id>codehaus-snapshots</id>
fa81f2
			<name>Codehaus Snapshots</name>
fa81f2
			<url>http://nexus.codehaus.org/snapshots/</url>
fa81f2
			<releases>
fa81f2
				<enabled>false</enabled>
fa81f2
			</releases>
fa81f2
			<snapshots>
fa81f2
				<enabled>true</enabled>
fa81f2
			</snapshots>
fa81f2
		</repository>
fa81f2
	</repositories>
fa81f2
fa81f2
fa81f2
	<distributionManagement>
fa81f2
		<snapshotRepository>
fa81f2
			<id>codehaus-nexus-snapshots</id>
fa81f2
			<name>Codehaus Nexus Snapshots</name>
fa81f2
			<url>${codehausDistMgmtSnapshotsUrl}</url>
fa81f2
		</snapshotRepository>
fa81f2
		<repository>
fa81f2
			<id>codehaus-nexus-staging</id>
fa81f2
			<name>Codehaus Release Repository</name>
fa81f2
			<url>https://nexus.codehaus.org/service/local/staging/deploy/maven2/</url>
fa81f2
		</repository>
fa81f2
	</distributionManagement>
fa81f2
fa81f2
	<build>
fa81f2
		<plugins>
fa81f2
			<plugin>
fa81f2
				<groupId>org.apache.maven.plugins</groupId>
fa81f2
				<artifactId>maven-enforcer-plugin</artifactId>
fa81f2
				<version>1.0</version>
fa81f2
				<executions>
fa81f2
					<execution>
fa81f2
						<id>enforce-maven</id>
fa81f2
						<goals>
fa81f2
							<goal>enforce</goal>
fa81f2
						</goals>
fa81f2
						<configuration>
fa81f2
							<rules>
fa81f2
								<requireMavenVersion>
fa81f2
									<version>(,2.1.0),(2.1.0,2.2.0),(2.2.0,)</version>
fa81f2
									<message>Maven 2.1.0 and 2.2.0 produce incorrect GPG signatures and checksums respectively.</message>
fa81f2
								</requireMavenVersion>
fa81f2
							</rules>
fa81f2
						</configuration>
fa81f2
					</execution>
fa81f2
				</executions>
fa81f2
			</plugin>
fa81f2
		</plugins>
fa81f2
		<pluginManagement>
fa81f2
			<plugins>
fa81f2
				<plugin>
fa81f2
					<groupId>org.apache.maven.plugins</groupId>
fa81f2
					<artifactId>maven-release-plugin</artifactId>
fa81f2
					<version>2.1</version>
fa81f2
					<configuration>
fa81f2
						<mavenExecutorId>forked-path</mavenExecutorId>
fa81f2
						<useReleaseProfile>false</useReleaseProfile>
fa81f2
						<arguments>-Pcodehaus-release</arguments>
fa81f2
					</configuration>
fa81f2
				</plugin>
fa81f2
			</plugins>
fa81f2
		</pluginManagement>
fa81f2
	</build>
fa81f2
fa81f2
	<properties>
fa81f2
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
fa81f2
		<codehausDistMgmtSnapshotsUrl>https://nexus.codehaus.org/content/repositories/snapshots/</codehausDistMgmtSnapshotsUrl>
fa81f2
	</properties>
fa81f2
fa81f2
	<profiles>
fa81f2
		<profile>
fa81f2
			<id>codehaus-release</id>
fa81f2
			<build>
fa81f2
				<plugins>
fa81f2
					<plugin>
fa81f2
						<groupId>org.apache.maven.plugins</groupId>
fa81f2
						<artifactId>maven-source-plugin</artifactId>
fa81f2
						<version>2.1.2</version>
fa81f2
						<executions>
fa81f2
							<execution>
fa81f2
								<id>attach-sources</id>
fa81f2
								<goals>
fa81f2
									<goal>jar-no-fork</goal>
fa81f2
								</goals>
fa81f2
							</execution>
fa81f2
						</executions>
fa81f2
					</plugin>
fa81f2
					<plugin>
fa81f2
						<groupId>org.apache.maven.plugins</groupId>
fa81f2
						<artifactId>maven-javadoc-plugin</artifactId>
fa81f2
						<version>2.7</version>
fa81f2
						<executions>
fa81f2
							<execution>
fa81f2
								<id>attach-javadocs</id>
fa81f2
								<goals>
fa81f2
									<goal>jar</goal>
fa81f2
								</goals>
fa81f2
							</execution>
fa81f2
						</executions>
fa81f2
					</plugin>
fa81f2
					<plugin>
fa81f2
						<groupId>org.apache.maven.plugins</groupId>
fa81f2
						<artifactId>maven-gpg-plugin</artifactId>
fa81f2
						<version>1.1</version>
fa81f2
						<executions>
fa81f2
							<execution>
fa81f2
								<id>sign-artifacts</id>
fa81f2
								<phase>verify</phase>
fa81f2
								<goals>
fa81f2
									<goal>sign</goal>
fa81f2
								</goals>
fa81f2
							</execution>
fa81f2
						</executions>
fa81f2
					</plugin>
fa81f2
				</plugins>
fa81f2
			</build>
fa81f2
		</profile>
fa81f2
	</profiles>
fa81f2
fa81f2
</project>