aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJulien Eluard <[email protected]>2010-11-16 22:42:49 +0100
committerJulien Eluard <[email protected]>2010-11-16 22:42:49 +0100
commit5a960b5303a5215b2eb27a1fa1874ea250acaa8e (patch)
tree7bea55612484907a8816140095c13957be627889
parent71958523692130cba5b143de6d41b467663d36da (diff)
[maven-release-plugin] rollback the release of parent-0.9
-rw-r--r--api/pom.xml5
-rw-r--r--enforcer-rule/pom.xml7
-rw-r--r--pom.xml15
3 files changed, 15 insertions, 12 deletions
diff --git a/api/pom.xml b/api/pom.xml
index 0c1e79a..88fe1ff 100644
--- a/api/pom.xml
+++ b/api/pom.xml
@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<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">
+<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>
<artifactId>api</artifactId>
@@ -10,7 +11,7 @@
<parent>
<groupId>org.semver</groupId>
<artifactId>parent</artifactId>
- <version>1.0-SNAPSHOT</version>
+ <version>0.9-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
diff --git a/enforcer-rule/pom.xml b/enforcer-rule/pom.xml
index cbd910c..5e91b12 100644
--- a/enforcer-rule/pom.xml
+++ b/enforcer-rule/pom.xml
@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<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">
+<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>
<artifactId>enforcer-rule</artifactId>
@@ -10,7 +11,7 @@
<parent>
<groupId>org.semver</groupId>
<artifactId>parent</artifactId>
- <version>1.0-SNAPSHOT</version>
+ <version>0.9-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
@@ -24,7 +25,7 @@
<dependency>
<groupId>org.semver</groupId>
<artifactId>api</artifactId>
- <version>1.0-SNAPSHOT</version>
+ <version>0.9-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.maven.enforcer</groupId>
diff --git a/pom.xml b/pom.xml
index a5086c7..bf5eecc 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,10 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
-<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">
+<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>org.semver</groupId>
<artifactId>parent</artifactId>
- <version>1.0-SNAPSHOT</version>
+ <version>0.9-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Semantic Versioning Parent</name>
@@ -134,19 +135,19 @@
<configuration>
<target>
<tstamp>
- <format property="now" pattern="yyyy-MM-dd hh:mm" />
+ <format property="now" pattern="yyyy-MM-dd hh:mm"/>
</tstamp>
<exec executable="git" dir="${gh-pages-dir}" failonerror="true">
- <arg line="pull origin gh-pages" />
+ <arg line="pull origin gh-pages"/>
</exec>
<exec executable="git" dir="${gh-pages-dir}" failonerror="true">
- <arg line="add ." />
+ <arg line="add ."/>
</exec>
<exec executable="git" dir="${gh-pages-dir}" failonerror="true">
- <arg line="commit -a -m 'update gh-pages ${project.version} ${now}'" />
+ <arg line="commit -a -m 'update gh-pages ${project.version} ${now}'"/>
</exec>
<exec executable="git" dir="${gh-pages-dir}" failonerror="true">
- <arg line="push origin gh-pages" />
+ <arg line="push origin gh-pages"/>
</exec>
</target>
</configuration>