uberpom
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.squeakysand.devtools</groupId>
<artifactId>uberpom</artifactId>
<version>5</version>
</dependency><?xml version="1.0" encoding="UTF-8" ?>
<!--
Copyright 2010-2013 Craig S. Dickson (http://craigsdickson.com)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
<relativePath />
</parent>
<groupId>com.squeakysand.devtools</groupId>
<artifactId>uberpom</artifactId>
<version>5</version>
<packaging>pom</packaging>
<name>${project.groupId} - ${project.artifactId}</name>
<description>
The highest level pom used for all SqueakySand projects.
</description>
<organization>
<name>squeakysand.com</name>
<url>http://www.squeakysand.com</url>
</organization>
<url>${projects.http.url}/devtools/${project.artifactId}/${project.version}/</url>
<inceptionYear>2010</inceptionYear>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>craig</id>
<name>Craig S. Dickson</name>
<email>craig@craigsdickson.com</email>
<url>http://craigsdickson.com</url>
<timezone>-8</timezone>
</developer>
</developers>
<scm>
<connection>${scm.connection.base}/devtools/uberpom/tags/5</connection>
<developerConnection>${scm.developerConnection.base}/devtools/uberpom/tags/5</developerConnection>
<url>${scm.url.base}/devtools/uberpom/tags/5</url>
</scm>
<distributionManagement>
<site>
<id>squeakysand-projects-website</id>
<url>${site.deploy.url}/devtools/${project.artifactId}/${project.version}/</url>
</site>
</distributionManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<projects.http.url>${project.organization.url}/projects</projects.http.url>
<site.deploy.url>s3://www.squeakysand.com/projects</site.deploy.url>
<scm.connection.base>scm:svn:http://svn.squeakysand.com/repo</scm.connection.base>
<scm.developerConnection.base>scm:svn:https://svn.squeakysand.com/repo</scm.developerConnection.base>
<scm.url.base>http://svn.squeakysand.com/viewvc</scm.url.base>
</properties>
<build>
<extensions>
<extension>
<groupId>com.squeakysand.devtools</groupId>
<artifactId>squeakysand-maven-wagons</artifactId>
<version>0.5.0</version>
</extension>
</extensions>
<pluginManagement>
<plugins>
<plugin>
<groupId>com.mycila.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
<version>1.10.b1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.4</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>2.5</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.8</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.7</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>1.3</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.4</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>2.4</version>
<configuration>
<createChecksum>true</createChecksum>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-linkcheck-plugin</artifactId>
<version>1.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.7</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.4.1</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<tagNameFormat>@{project.version}</tagNameFormat>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-plugin</artifactId>
<version>1.8.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.3</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.8</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>1.5</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<executions>
<execution>
<id>enforce-maven-version</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<!--dependencyConvergence/-->
<requireMavenVersion>
<version>[3.0,)</version>
<message>Please upgrade your Maven install to 3.0 or later</message>
</requireMavenVersion>
<!--<requirePluginVersions>
<message>Best practice is to declare and use released plugin versions only!</message>
<banSnapshots>false</banSnapshots>
</requirePluginVersions>-->
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<configuration>
<reportPlugins>
<!--plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-linkcheck-plugin</artifactId>
</plugin-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<reportSets>
<reportSet>
<reports>
<!--<report>cim</report>-->
<report>dependencies</report>
<report>dependency-convergence</report>
<report>dependency-management</report>
<!--<report>distribution-management</report>-->
<report>index</report>
<!--<report>issue-tracking</report>-->
<report>license</report>
<!--<report>mailing-list</report>-->
<report>modules</report>
<report>plugin-management</report>
<report>plugins</report>
<report>project-team</report>
<report>scm</report>
<report>summary</report>
</reports>
</reportSet>
</reportSets>
</plugin>
</reportPlugins>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>license-compliance</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<!--
this plugin can add headers to source files and also validate that headers exist. one
problem is that it excludes pom.xml for some reason, so still need to add license headers
to pom.xml files by hand. to add headers, run:
mvn -Plicense-compliance validate license:format
-->
<groupId>com.mycila.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
<configuration>
<header>http://svn.squeakysand.com/repo/devtools/apache-licenses/tags/2.0.1/file-header</header>
<excludes>
<exclude>**/NOTICE</exclude>
<exclude>**/LICENSE</exclude>
</excludes>
<includes>
<include>**pom.xml</include>
</includes>
<strictCheck>true</strictCheck>
<headerDefinitions>
<headerDefinition>http://svn.squeakysand.com/repo/devtools/maven-license-plugin/tags/1/JAVA_STYLE.xml</headerDefinition>
</headerDefinitions>
<mapping>
<java>JAVA_STYLE</java>
<tag>DYNASCRIPT_STYLE</tag>
<tagx>XML_STYLE</tagx>
<tld>XML_STYLE</tld>
<xjb>XML_STYLE</xjb>
</mapping>
<properties>
<project.inceptionYear>${project.inceptionYear}</project.inceptionYear>
<currentYear>${currentYear}</currentYear>
</properties>
</configuration>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>check</goal>
</goals>
<configuration>
<failIfMissing>true</failIfMissing>
<aggregate>true</aggregate>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<!--
set a property called currentYear for use in the license header files.
-->
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>currentYear-property</id>
<goals>
<goal>timestamp-property</goal>
</goals>
<configuration>
<name>currentYear</name>
<pattern>yyyy</pattern>
<units>year</units>
<locale>en</locale>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<!--
generates NOTICE file with references to all projects used and their licenses
-->
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>add-third-party</goal>
</goals>
<configuration>
<outputDirectory>${project.build.outputDirectory}/META-INF</outputDirectory>
<thirdPartyFilename>NOTICE</thirdPartyFilename>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>sign-artifacts</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<!--
generates PGP signatures for all artifacts as required for upload to maven central
-->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<configuration>
<useAgent>true</useAgent>
</configuration>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>attach-site-descriptor</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<executions>
<execution>
<id>attach-descriptor</id>
<goals>
<goal>attach-descriptor</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>