|
<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"> |
|
<modelVersion>4.0.0</modelVersion> |
|
<groupId>573</groupId> |
|
<artifactId>play-with-version-numbering-automagic</artifactId> |
|
<version>0.0.1-SNAPSHOT</version> |
|
<packaging>pom</packaging> |
|
|
|
<name>Exercises in Mavenised Version Numbering, Parent Module</name> |
|
|
|
<description /> |
|
|
|
<scm> |
|
<connection>scm:git:git://github.com/573/play-with-version-numbering-automagic.git</connection> |
|
<developerConnection>scm:git:[email protected]:573/play-with-version-numbering-automagic.git</developerConnection> |
|
<url>http://github.com/573/play-with-version-numbering-automagic/tree/master/</url> |
|
</scm> |
|
|
|
<build> |
|
<extensions> |
|
<extension> |
|
<groupId>org.apache.maven.scm</groupId> |
|
<artifactId>maven-scm-provider-gitexe</artifactId> |
|
<version>1.4</version> |
|
</extension> |
|
<extension> |
|
<groupId>org.apache.maven.scm</groupId> |
|
<artifactId>maven-scm-manager-plexus</artifactId> |
|
<version>1.4</version> |
|
</extension> |
|
</extensions> |
|
|
|
<pluginManagement> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-jar-plugin</artifactId> |
|
<version>2.3.1</version> |
|
</plugin> |
|
<plugin> |
|
<groupId>com.keyboardsamurais.maven</groupId> |
|
<artifactId>maven-timestamp-plugin</artifactId> |
|
<version>0.1</version> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-scm-plugin</artifactId> |
|
<version>1.4</version> |
|
</plugin> |
|
</plugins> |
|
</pluginManagement> |
|
|
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-jar-plugin</artifactId> |
|
<configuration> |
|
<archive> |
|
<manifest> |
|
<addDefaultImplementationEntries>true |
|
</addDefaultImplementationEntries> |
|
</manifest> |
|
<manifestEntries> |
|
<Implementation-Build>${buildNumber}</Implementation-Build> |
|
<buildtime>${timestamp}</buildtime> |
|
<description>${project.description}</description> |
|
</manifestEntries> |
|
</archive> |
|
</configuration> |
|
</plugin> |
|
<plugin> |
|
<groupId>com.keyboardsamurais.maven</groupId> |
|
<artifactId>maven-timestamp-plugin</artifactId> |
|
<configuration> |
|
<propertyName>timestamp</propertyName> |
|
<timestampPattern>EEE, d MMM yyyy HH:mm:ss Z</timestampPattern> |
|
</configuration> |
|
<executions> |
|
<execution> |
|
<goals> |
|
<goal>create</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-scm-plugin</artifactId> |
|
<configuration> |
|
<goals>install</goals> |
|
<checkoutDirectory>${project.basedir}</checkoutDirectory> |
|
</configuration> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
|
|
<repositories> |
|
<repository> |
|
<id>573-releases</id> |
|
<name>Github repository for 573 Maven artifacts</name> |
|
<url>http://github.com/573/Asynchronous-Maven-2-Repository/raw/master/releases</url> |
|
<snapshots> |
|
<enabled>false</enabled> |
|
</snapshots> |
|
</repository> |
|
<repository> |
|
<id>573-snapshots</id> |
|
<name>Github repository for 573 Maven snapshot artifacts</name> |
|
<url>http://github.com/573/Asynchronous-Maven-2-Repository/raw/master/snapshots</url> |
|
<snapshots> |
|
<enabled>true</enabled> |
|
</snapshots> |
|
</repository> |
|
</repositories> |
|
|
|
<issueManagement> |
|
<system>github</system> |
|
<url>http://github.com/573/play-with-version-numbering-automagic/issues#issue/</url> |
|
</issueManagement> |
|
|
|
<distributionManagement> |
|
<repository> |
|
<id>573-releases</id> |
|
<name /> |
|
<url>file://${release-repository-path}/releases</url> |
|
</repository> |
|
<snapshotRepository> |
|
<id>573-snapshots</id> |
|
<name /> |
|
<url>file://${release-repository-path}/snapshots</url> |
|
<uniqueVersion>false</uniqueVersion> |
|
</snapshotRepository> |
|
<!-- |
|
<site> <id>573-sites</id> <name /> |
|
<url>dav:https://svn.xyz.com/project/maven-site</url> </site> |
|
--> |
|
</distributionManagement> |
|
|
|
<pluginRepositories> |
|
<pluginRepository> |
|
<id>maven-timestamp</id> |
|
<url> |
|
http://maven-timestamp-plugin.googlecode.com/svn/trunk/repository |
|
</url> |
|
</pluginRepository> |
|
</pluginRepositories> |
|
</project> |