Replacing version numbers spread around the all pom.xml files with properties defined in the master pom
authorJaroslav Tulach <jtulach@netbeans.org>
Thu, 18 Feb 2010 08:33:00 +0100
changeset 231a849ce530828
parent 230 a80ccd2a4517
child 232 4a94cefe6555
Replacing version numbers spread around the all pom.xml files with properties defined in the master pom
emailer/pom.xml
freemarkerdor/pom.xml
pom.xml
quoridor/pom.xml
statistics/pom.xml
visidor/pom.xml
webidor/pom.xml
     1.1 --- a/emailer/pom.xml	Thu Feb 18 06:53:35 2010 +0100
     1.2 +++ b/emailer/pom.xml	Thu Feb 18 08:33:00 2010 +0100
     1.3 @@ -7,9 +7,8 @@
     1.4      <groupId>cz.xelfi.quoridor</groupId>
     1.5      <version>1.0</version>
     1.6    </parent>
     1.7 -  <groupId>cz.xelfi.quoridor</groupId>
     1.8    <artifactId>emailer</artifactId>
     1.9 -  <version>1.0</version>
    1.10 +  <version>${emailerVersion}</version>
    1.11    <inceptionYear>2008</inceptionYear>
    1.12    <build>
    1.13      <sourceDirectory>src/main/scala</sourceDirectory>
     2.1 --- a/freemarkerdor/pom.xml	Thu Feb 18 06:53:35 2010 +0100
     2.2 +++ b/freemarkerdor/pom.xml	Thu Feb 18 08:33:00 2010 +0100
     2.3 @@ -9,19 +9,19 @@
     2.4    </parent>
     2.5    <artifactId>freemarkerdor</artifactId>
     2.6    <name>freemarkerdor</name>
     2.7 -  <version>1.57</version>
     2.8 +  <version>${freemarkerVersion}</version>
     2.9    <url>http://maven.apache.org</url>
    2.10    <dependencies>
    2.11      <dependency>
    2.12        <groupId>${project.groupId}</groupId>
    2.13        <artifactId>webidor</artifactId>
    2.14 -      <version>1.12</version>
    2.15 +      <version>${webidorVersion}</version>
    2.16        <scope>test</scope>
    2.17      </dependency>
    2.18      <dependency>
    2.19        <groupId>${project.groupId}</groupId>
    2.20        <artifactId>quoridor</artifactId>
    2.21 -      <version>1.0</version>
    2.22 +      <version>${quoridorVersion}</version>
    2.23      </dependency>
    2.24      <dependency>
    2.25        <groupId>com.sun.jersey</groupId>
    2.26 @@ -73,7 +73,7 @@
    2.27      <dependency>
    2.28        <groupId>${project.groupId}</groupId>
    2.29        <artifactId>statistics</artifactId>
    2.30 -      <version>1.7</version>
    2.31 +      <version>${statisticsVersion}</version>
    2.32        <scope>test</scope>
    2.33      </dependency>
    2.34    </dependencies>
     3.1 --- a/pom.xml	Thu Feb 18 06:53:35 2010 +0100
     3.2 +++ b/pom.xml	Thu Feb 18 08:33:00 2010 +0100
     3.3 @@ -33,6 +33,14 @@
     3.4        <name>API Design</name>
     3.5        <url>http://apidesign.org</url>
     3.6    </organization>
     3.7 +  <properties>
     3.8 +      <quoridorVersion>1.1</quoridorVersion>
     3.9 +      <webidorVersion>1.15</webidorVersion>
    3.10 +      <visidorVersion>1.0-SNAPSHOT</visidorVersion>
    3.11 +      <freemarkerVersion>1.58</freemarkerVersion>
    3.12 +      <emailerVersion>1.0</emailerVersion>
    3.13 +      <statisticsVersion>1.8</statisticsVersion>
    3.14 +  </properties>
    3.15    <modules>
    3.16      <module>quoridor</module>
    3.17      <module>visidor</module>
     4.1 --- a/quoridor/pom.xml	Thu Feb 18 06:53:35 2010 +0100
     4.2 +++ b/quoridor/pom.xml	Thu Feb 18 08:33:00 2010 +0100
     4.3 @@ -1,7 +1,6 @@
     4.4  <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     4.5    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
     4.6    <modelVersion>4.0.0</modelVersion>
     4.7 -  <groupId>cz.xelfi.quoridor</groupId>
     4.8    <artifactId>quoridor</artifactId>
     4.9    <packaging>jar</packaging>
    4.10    <url>http://quoridor.xelfi.cz</url>
    4.11 @@ -69,6 +68,6 @@
    4.12      </dependencies>
    4.13      <name>Quoridor Library</name>
    4.14      <description>Quoridor library provides non-visual API to play the Quoridor game.</description>
    4.15 -    <version>1.0</version>
    4.16 +    <version>${quoridorVersion}</version>
    4.17  </project>
    4.18  
     5.1 --- a/statistics/pom.xml	Thu Feb 18 06:53:35 2010 +0100
     5.2 +++ b/statistics/pom.xml	Thu Feb 18 08:33:00 2010 +0100
     5.3 @@ -8,10 +8,9 @@
     5.4          <groupId>cz.xelfi.quoridor</groupId>
     5.5          <version>1.0</version>
     5.6    </parent>
     5.7 -  <groupId>cz.xelfi.quoridor</groupId>
     5.8    <artifactId>statistics</artifactId>
     5.9    <packaging>jar</packaging>
    5.10 -  <version>1.7</version>
    5.11 +  <version>${statisticsVersion}</version>
    5.12    <name>Game Statistics</name>
    5.13    <url>http://maven.apache.org</url>
    5.14    <repositories>
    5.15 @@ -69,15 +68,15 @@
    5.16        <scope>test</scope>
    5.17      </dependency>
    5.18      <dependency>
    5.19 -      <groupId>cz.xelfi.quoridor</groupId>
    5.20 +      <groupId>${project.groupId}</groupId>
    5.21        <artifactId>quoridor</artifactId>
    5.22 -      <version>1.0</version>
    5.23 +      <version>${quoridorVersion}</version>
    5.24        <type>jar</type>
    5.25      </dependency>
    5.26      <dependency>
    5.27        <groupId>${project.groupId}</groupId>
    5.28        <artifactId>webidor</artifactId>
    5.29 -      <version>1.12</version>
    5.30 +      <version>${webidorVersion}</version>
    5.31      </dependency>
    5.32    </dependencies>
    5.33    <build>
     6.1 --- a/visidor/pom.xml	Thu Feb 18 06:53:35 2010 +0100
     6.2 +++ b/visidor/pom.xml	Thu Feb 18 08:33:00 2010 +0100
     6.3 @@ -3,7 +3,7 @@
     6.4    <modelVersion>4.0.0</modelVersion>
     6.5    <artifactId>visidor</artifactId>
     6.6    <packaging>jar</packaging>
     6.7 -  <version>1.0</version>
     6.8 +  <version>${visidorVersion}</version>
     6.9    <name>visidor</name>
    6.10    <url>http://maven.apache.org</url>
    6.11    <parent>
    6.12 @@ -35,7 +35,7 @@
    6.13      <dependency>
    6.14        <groupId>cz.xelfi.quoridor</groupId>
    6.15        <artifactId>quoridor</artifactId>
    6.16 -      <version>1.0</version>
    6.17 +      <version>${quoridorVersion}</version>
    6.18      </dependency>
    6.19      <dependency>
    6.20        <groupId>org.netbeans.api</groupId>
     7.1 --- a/webidor/pom.xml	Thu Feb 18 06:53:35 2010 +0100
     7.2 +++ b/webidor/pom.xml	Thu Feb 18 08:33:00 2010 +0100
     7.3 @@ -10,7 +10,7 @@
     7.4    </parent>
     7.5    <artifactId>webidor</artifactId>
     7.6    <packaging>jar</packaging>
     7.7 -  <version>1.13</version>
     7.8 +  <version>${webidorVersion}</version>
     7.9    <name>webidor server</name>
    7.10    <url>http://maven.apache.org</url>
    7.11    <repositories>
    7.12 @@ -70,7 +70,7 @@
    7.13      <dependency>
    7.14        <groupId>cz.xelfi.quoridor</groupId>
    7.15        <artifactId>quoridor</artifactId>
    7.16 -      <version>1.0</version>
    7.17 +      <version>${quoridorVersion}</version>
    7.18        <type>jar</type>
    7.19      </dependency>
    7.20    </dependencies>