Skip to content
This repository has been archived by the owner on Jul 7, 2023. It is now read-only.

Commit

Permalink
Merge pull request iipc#11 from nlevitt/unified-pom
Browse files Browse the repository at this point in the history
pom.xml customizations to allow IA and other 3rd parties to tag builds o...
  • Loading branch information
ikreymer committed Feb 28, 2014
2 parents ee31051 + ffb68b8 commit 8b4833c
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
<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>

<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>

<groupId>org.netpreserve.commons</groupId>
<artifactId>webarchive-commons</artifactId>
<version>1.1.1-SNAPSHOT</version>
<version>1.1.1-${build.tag}SNAPSHOT</version>
<packaging>jar</packaging>

<name>webarchive-commons</name>
Expand Down Expand Up @@ -47,6 +53,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<build.time>${maven.build.timestamp}</build.time>
<maven.build.timestamp.format>yyyyMMddhhmmss</maven.build.timestamp.format>
<build.tag></build.tag>
</properties>

<dependencies>
Expand Down Expand Up @@ -233,13 +240,17 @@

</repositories>


<distributionManagement>
<repository>
<id>repository</id>
<!--Pass as command-line system property to maven-->
<url>${repository.url}</url>
</repository>
<snapshotRepository>
<id>repository</id>
<!--Pass as command-line system property to maven-->
<url>${repository.url}</url>
</snapshotRepository>
</distributionManagement>

</project>

0 comments on commit 8b4833c

Please sign in to comment.