Skip to content

Commit

Permalink
Modified versioning in maven POM files
Browse files Browse the repository at this point in the history
  • Loading branch information
manuel-mauky committed Jan 30, 2014
1 parent 8e62d08 commit 7e43ef0
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 16 deletions.
11 changes: 6 additions & 5 deletions examples/mvvmfx-cdi-starter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>de.saxsys</groupId>
<artifactId>mvvmfx-cdi-example</artifactId>
<version>0.1.3-SNAPSHOT</version>
<version>${mvvmfx.version}</version>

<name>mvvmFX CDI Example</name>

Expand All @@ -12,6 +12,7 @@
</description>

<properties>
<mvvmfx.version>0.1.3-SNAPSHOT</mvvmfx.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
Expand All @@ -33,18 +34,18 @@
<dependency>
<groupId>de.saxsys</groupId>
<artifactId>mvvmFX</artifactId>
<version>0.1.3-SNAPSHOT</version>
<version>${mvvmfx.version}</version>
</dependency>
<dependency>
<groupId>de.saxsys</groupId>
<artifactId>mvvmFX-cdi</artifactId>
<version>0.1.3-SNAPSHOT</version>
<version>${mvvmfx.version}</version>
</dependency>

<dependency>
<groupId>de.saxsys</groupId>
<artifactId>mvvmfx-complex</artifactId>
<version>0.1.3-SNAPSHOT</version>
<version>${mvvmfx.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand All @@ -54,4 +55,4 @@
</dependency>
</dependencies>

</project>
</project>
3 changes: 2 additions & 1 deletion examples/mvvmfx-complex-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
<modelVersion>4.0.0</modelVersion>
<groupId>de.saxsys</groupId>
<artifactId>mvvmfx-complex</artifactId>
<version>0.1.3-SNAPSHOT</version>
<version>${mvvmfx.version}</version>
<name>Complex Example</name>
<properties>
<mvvmfx.version>0.1.3-SNAPSHOT</mvvmfx.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
Expand Down
17 changes: 9 additions & 8 deletions examples/mvvmfx-guice-starter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@
<modelVersion>4.0.0</modelVersion>
<groupId>de.saxsys</groupId>
<artifactId>mvvmfx-guice-example</artifactId>
<version>0.1.3-SNAPSHOT</version>
<version>${mvvmfx.version}</version>
<name>Guice Start Example</name>

<description>
This example shows the usage of the mvvmFX framework with Guice Dependency Injection.
</description>
<properties>
<mvvmfx.version>0.1.3-SNAPSHOT</mvvmfx.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
Expand Down Expand Up @@ -56,17 +57,17 @@
<dependency>
<groupId>de.saxsys</groupId>
<artifactId>mvvmFX</artifactId>
<version>0.1.3-SNAPSHOT</version>
<version>${mvvmfx.version}</version>
</dependency>
<dependency>
<groupId>de.saxsys</groupId>
<artifactId>mvvmFX-guice</artifactId>
<version>${mvvmfx.version}</version>
</dependency>
<dependency>
<groupId>de.saxsys</groupId>
<artifactId>mvvmFX-guice</artifactId>
<version>0.1.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>de.saxsys</groupId>
<artifactId>mvvmfx-complex</artifactId>
<version>0.1.3-SNAPSHOT</version>
<version>${mvvmfx.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
Expand Down
2 changes: 1 addition & 1 deletion mvvmfx-parent/mvvmfx-cdi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<dependency>
<groupId>de.saxsys</groupId>
<artifactId>mvvmFX</artifactId>
<version>0.1.3-SNAPSHOT</version>
<version>${project.parent.version}</version>
<scope>provided</scope>
</dependency>

Expand Down
2 changes: 1 addition & 1 deletion mvvmfx-parent/mvvmfx-guice/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<dependency>
<groupId>de.saxsys</groupId>
<artifactId>mvvmFX</artifactId>
<version>0.1.3-SNAPSHOT</version>
<version>${project.parent.version}</version>
<scope>provided</scope>
</dependency>

Expand Down

0 comments on commit 7e43ef0

Please sign in to comment.