Fixed the settings in the pom's of the tutorials
authorKai Moritz <km@juplo.de>
Tue, 5 May 2015 10:21:39 +0000 (12:21 +0200)
committerKai Moritz <km@juplo.de>
Sat, 16 May 2015 14:02:06 +0000 (16:02 +0200)
src/it/tutorials/annotations/pom.xml
src/it/tutorials/basic/pom.xml
src/it/tutorials/entitymanager/pom.xml
src/it/tutorials/envers/pom.xml
src/it/tutorials/osgi/unmanaged-jpa/pom.xml
src/it/tutorials/osgi/unmanaged-native/pom.xml
src/it/tutorials/pom.xml

index db62586..50a9a9e 100644 (file)
@@ -29,7 +29,7 @@
     <parent>
         <groupId>org.hibernate.tutorials</groupId>
         <artifactId>hibernate-tutorials</artifactId>
-        <version>$version</version>
+        <version>4.3.9.Final</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
 
index ea35fa3..49d2635 100644 (file)
@@ -29,7 +29,7 @@
     <parent>
         <groupId>org.hibernate.tutorials</groupId>
         <artifactId>hibernate-tutorials</artifactId>
-        <version>$version</version>
+        <version>4.3.9.Final</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
 
index 6d47755..6df9240 100644 (file)
@@ -29,7 +29,7 @@
     <parent>
         <groupId>org.hibernate.tutorials</groupId>
         <artifactId>hibernate-tutorials</artifactId>
-        <version>$version</version>
+        <version>4.3.9.Final</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
 
@@ -46,7 +46,7 @@
         <dependency>
             <groupId>org.hibernate</groupId>
             <artifactId>hibernate-entitymanager</artifactId>
-            <version>$version</version>
+            <version>4.3.9.Final</version>
         </dependency>
     </dependencies>
 
index e3ec34b..595df37 100644 (file)
@@ -29,7 +29,7 @@
     <parent>
         <groupId>org.hibernate.tutorials</groupId>
         <artifactId>hibernate-tutorials</artifactId>
-        <version>$version</version>
+        <version>4.3.9.Final</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
 
         <dependency>
             <groupId>org.hibernate</groupId>
             <artifactId>hibernate-envers</artifactId>
-            <version>$version</version>
+            <version>4.3.9.Final</version>
         </dependency>
         <dependency>
             <groupId>org.hibernate</groupId>
             <artifactId>hibernate-entitymanager</artifactId>
-            <version>$version</version>
+            <version>4.3.9.Final</version>
         </dependency>
     </dependencies>
 
index d43b08e..9b6592f 100755 (executable)
         <dependency>
             <groupId>org.hibernate</groupId>
             <artifactId>hibernate-entitymanager</artifactId>
-            <version>4.3.0-SNAPSHOT</version>
+            <version>4.3.9.Final</version>
         </dependency>
                <dependency>
                        <groupId>com.h2database</groupId>
                        <artifactId>h2</artifactId>
-                       <version>1.3.170</version>
+                       <version>1.4.187</version>
                </dependency>
         
        </dependencies>
index 6fb3dd7..c0126bf 100755 (executable)
         <dependency>
             <groupId>org.hibernate</groupId>
             <artifactId>hibernate-core</artifactId>
-            <version>4.3.0-SNAPSHOT</version>
+            <version>4.3.9.Final</version>
         </dependency>
         <dependency>
             <groupId>org.hibernate</groupId>
             <artifactId>hibernate-envers</artifactId>
-            <version>4.3.0-SNAPSHOT</version>
+            <version>4.3.9.Final</version>
         </dependency>
                <dependency>
                        <groupId>com.h2database</groupId>
                        <artifactId>h2</artifactId>
-                       <version>1.3.170</version>
+                       <version>1.4.187</version>
                </dependency>
         
        </dependencies>
index 9e09ca1..37e4f1f 100644 (file)
@@ -28,7 +28,7 @@
 
     <groupId>org.hibernate.tutorials</groupId>
     <artifactId>hibernate-tutorials</artifactId>
-    <version>$version</version>
+    <version>4.3.9.Final</version>
     <packaging>pom</packaging>
 
     <name>Hibernate Getting Started Guide Tutorials</name>
         <module>annotations</module>
         <module>entitymanager</module>
         <module>envers</module>
-        <module>osgi</module>
+        <module>osgi/unmanaged-native</module>
+        <module>osgi/unmanaged-jpa</module>
+        <module>osgi/managed-jpa</module>
     </modules>
 
     <dependencies>
         <dependency>
             <groupId>org.hibernate</groupId>
             <artifactId>hibernate-core</artifactId>
-            <version>$version</version>
+            <version>4.3.9.Final</version>
         </dependency>
 
         <!-- Hibernate uses jboss-logging for logging, for the tutorials we will use the sl4fj-simple backend -->
         <dependency>
             <groupId>org.slf4j</groupId>
             <artifactId>slf4j-simple</artifactId>
-            <version>$slf4j</version>
+            <version>1.7.12</version>
         </dependency>
 
         <!-- The tutorials use JUnit test cases to illustrate usage -->
         <dependency>
             <groupId>junit</groupId>
             <artifactId>junit</artifactId>
-            <version>$junit</version>
+            <version>4.12</version>
         </dependency>
 
         <!-- The tutorials use the H2 in-memory database -->
         <dependency>
             <groupId>com.h2database</groupId>
             <artifactId>h2</artifactId>
-            <version>$h2</version>
+            <version>1.4.187</version>
         </dependency>
     </dependencies>
 
                 <directory>src/test/resources</directory>
             </testResource>
         </testResources>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <version>3.3</version>
+                <configuration>
+                    <source>1.6</source>
+                    <target>1.6</target>
+                    <encoding>utf8</encoding>
+                    <showWarnings>true</showWarnings>
+                </configuration>
+            </plugin>
+        </plugins>
     </build>
 
 </project>