Skip to content

Commit

Permalink
bump to 1.2.1-SNAPSHOT so people/maven won't use this as vanilla 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ansell committed Nov 3, 2011
1 parent 4a9e81b commit 6d8184e
Show file tree
Hide file tree
Showing 5 changed files with 78 additions and 8 deletions.
72 changes: 71 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@

<groupId>org.topquadrant</groupId>
<artifactId>spin-parent</artifactId>
<version>1.2.0</version>
<version>1.2.1-SNAPSHOT</version>
<packaging>pom</packaging>

<name>spin</name>
<url>http://topbraid.org/spin/api/</url>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<spin.version>1.2.1-SNAPSHOT</spin.version>
</properties>

<organization>
Expand Down Expand Up @@ -42,5 +43,74 @@
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.6</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>2.4.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>2.3.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>2.3</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.8</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.3.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.5</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.6</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.9</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.9</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>
4 changes: 2 additions & 2 deletions spin-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>spin-parent</artifactId>
<groupId>org.topquadrant</groupId>
<version>1.2.0</version>
<version>1.2.1-SNAPSHOT</version>
</parent>
<artifactId>spin-api</artifactId>
<name>spin-api</name>
Expand All @@ -18,7 +18,7 @@
<dependency>
<groupId>org.topquadrant</groupId>
<artifactId>spin-base</artifactId>
<version>1.2.0</version>
<version>${spin.version}</version>
</dependency>
<dependency>
<groupId>com.hp.hpl.jena</groupId>
Expand Down
2 changes: 1 addition & 1 deletion spin-base/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>spin-parent</artifactId>
<groupId>org.topquadrant</groupId>
<version>1.2.0</version>
<version>1.2.1-SNAPSHOT</version>
</parent>
<artifactId>spin-base</artifactId>
<name>spin-base</name>
Expand Down
4 changes: 2 additions & 2 deletions spin-examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>spin-parent</artifactId>
<groupId>org.topquadrant</groupId>
<version>1.2.0</version>
<version>1.2.1-SNAPSHOT</version>
</parent>
<artifactId>spin-examples</artifactId>
<name>spin-examples</name>
Expand All @@ -17,7 +17,7 @@
<dependency>
<groupId>org.topquadrant</groupId>
<artifactId>spin-api</artifactId>
<version>1.2.0</version>
<version>${spin.version}</version>
</dependency>
</dependencies>
<build>
Expand Down
4 changes: 2 additions & 2 deletions spin-tools/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>spin-parent</artifactId>
<groupId>org.topquadrant</groupId>
<version>1.2.0</version>
<version>1.2.1-SNAPSHOT</version>
</parent>
<artifactId>spin-tools</artifactId>
<name>spin-tools</name>
Expand All @@ -17,7 +17,7 @@
<dependency>
<groupId>org.topquadrant</groupId>
<artifactId>spin-api</artifactId>
<version>1.2.0</version>
<version>1.2.1-SNAPSHOT</version>
</dependency>
</dependencies>
<build>
Expand Down

0 comments on commit 6d8184e

Please sign in to comment.