Added tutorials of the hibernate-release 5.0.12.Final
authorKai Moritz <kai@juplo.de>
Fri, 5 Apr 2019 11:03:44 +0000 (13:03 +0200)
committerKai Moritz <kai@juplo.de>
Fri, 5 Apr 2019 11:07:00 +0000 (13:07 +0200)
commitfe9c99046f93cbc5a14d7b5314dc1c5c06ae2b80
tree6275bf3b53a6e3e1ed67ab4b09f904a3f674e0fe
parent40e2f2b4f5c2050c8673b5be8a2d374c003acd98
Added tutorials of the hibernate-release 5.0.12.Final

This commit contains the unchanged tutorials from the 5.0.12-Release
See: http://docs.jboss.org/hibernate/orm/5.0/quickstart/html/#preface
Download: http://docs.jboss.org/hibernate/orm/5.0/quickstart/html/hibernate-tutorials.zip
65 files changed:
src/it/tutorials-5.0.12/annotations/pom.xml [new file with mode: 0644]
src/it/tutorials-5.0.12/annotations/src/test/java/org/hibernate/tutorial/annotations/AnnotationsIllustrationTest.java [new file with mode: 0644]
src/it/tutorials-5.0.12/annotations/src/test/java/org/hibernate/tutorial/annotations/Event.java [new file with mode: 0644]
src/it/tutorials-5.0.12/annotations/src/test/resources/hibernate.cfg.xml [new file with mode: 0644]
src/it/tutorials-5.0.12/basic/pom.xml [new file with mode: 0644]
src/it/tutorials-5.0.12/basic/src/test/java/org/hibernate/tutorial/hbm/Event.hbm.xml [new file with mode: 0644]
src/it/tutorials-5.0.12/basic/src/test/java/org/hibernate/tutorial/hbm/Event.java [new file with mode: 0644]
src/it/tutorials-5.0.12/basic/src/test/java/org/hibernate/tutorial/hbm/NativeApiIllustrationTest.java [new file with mode: 0644]
src/it/tutorials-5.0.12/basic/src/test/resources/hibernate.cfg.xml [new file with mode: 0644]
src/it/tutorials-5.0.12/entitymanager/pom.xml [new file with mode: 0644]
src/it/tutorials-5.0.12/entitymanager/src/test/java/org/hibernate/tutorial/em/EntityManagerIllustrationTest.java [new file with mode: 0644]
src/it/tutorials-5.0.12/entitymanager/src/test/java/org/hibernate/tutorial/em/Event.java [new file with mode: 0644]
src/it/tutorials-5.0.12/entitymanager/src/test/resources/META-INF/persistence.xml [new file with mode: 0644]
src/it/tutorials-5.0.12/envers/pom.xml [new file with mode: 0644]
src/it/tutorials-5.0.12/envers/src/test/java/org/hibernate/tutorial/envers/EnversIllustrationTest.java [new file with mode: 0644]
src/it/tutorials-5.0.12/envers/src/test/java/org/hibernate/tutorial/envers/Event.java [new file with mode: 0644]
src/it/tutorials-5.0.12/envers/src/test/resources/META-INF/persistence.xml [new file with mode: 0644]
src/it/tutorials-5.0.12/osgi/datasource-h2.xml [new file with mode: 0644]
src/it/tutorials-5.0.12/osgi/managed-jpa/features.xml [new file with mode: 0644]
src/it/tutorials-5.0.12/osgi/managed-jpa/pom.xml [new file with mode: 0644]
src/it/tutorials-5.0.12/osgi/managed-jpa/src/main/java/org/hibernate/osgitest/DataPointService.java [new file with mode: 0644]
src/it/tutorials-5.0.12/osgi/managed-jpa/src/main/java/org/hibernate/osgitest/DataPointServiceImpl.java [new file with mode: 0644]
src/it/tutorials-5.0.12/osgi/managed-jpa/src/main/java/org/hibernate/osgitest/command/AddCommand.java [new file with mode: 0644]
src/it/tutorials-5.0.12/osgi/managed-jpa/src/main/java/org/hibernate/osgitest/command/DeleteAllCommand.java [new file with mode: 0644]
src/it/tutorials-5.0.12/osgi/managed-jpa/src/main/java/org/hibernate/osgitest/command/GetAllCommand.java [new file with mode: 0644]
src/it/tutorials-5.0.12/osgi/managed-jpa/src/main/java/org/hibernate/osgitest/entity/DataPoint.java [new file with mode: 0644]
src/it/tutorials-5.0.12/osgi/managed-jpa/src/main/resources/META-INF/persistence.xml [new file with mode: 0644]
src/it/tutorials-5.0.12/osgi/managed-jpa/src/main/resources/OSGI-INF/blueprint/blueprint.xml [new file with mode: 0644]
src/it/tutorials-5.0.12/osgi/pom.xml [new file with mode: 0644]
src/it/tutorials-5.0.12/osgi/unmanaged-jpa/features.xml [new file with mode: 0644]
src/it/tutorials-5.0.12/osgi/unmanaged-jpa/pom.xml [new file with mode: 0644]
src/it/tutorials-5.0.12/osgi/unmanaged-jpa/src/main/java/org/hibernate/osgitest/DataPointService.java [new file with mode: 0644]
src/it/tutorials-5.0.12/osgi/unmanaged-jpa/src/main/java/org/hibernate/osgitest/DataPointServiceImpl.java [new file with mode: 0644]
src/it/tutorials-5.0.12/osgi/unmanaged-jpa/src/main/java/org/hibernate/osgitest/HibernateUtil.java [new file with mode: 0644]
src/it/tutorials-5.0.12/osgi/unmanaged-jpa/src/main/java/org/hibernate/osgitest/TestIntegrator.java [new file with mode: 0644]
src/it/tutorials-5.0.12/osgi/unmanaged-jpa/src/main/java/org/hibernate/osgitest/TestStrategyRegistrationProvider.java [new file with mode: 0644]
src/it/tutorials-5.0.12/osgi/unmanaged-jpa/src/main/java/org/hibernate/osgitest/TestTypeContributor.java [new file with mode: 0644]
src/it/tutorials-5.0.12/osgi/unmanaged-jpa/src/main/java/org/hibernate/osgitest/command/AddCommand.java [new file with mode: 0644]
src/it/tutorials-5.0.12/osgi/unmanaged-jpa/src/main/java/org/hibernate/osgitest/command/DeleteAllCommand.java [new file with mode: 0644]
src/it/tutorials-5.0.12/osgi/unmanaged-jpa/src/main/java/org/hibernate/osgitest/command/GetAllCommand.java [new file with mode: 0644]
src/it/tutorials-5.0.12/osgi/unmanaged-jpa/src/main/java/org/hibernate/osgitest/command/UpdateCommand.java [new file with mode: 0644]
src/it/tutorials-5.0.12/osgi/unmanaged-jpa/src/main/java/org/hibernate/osgitest/entity/DataPoint.java [new file with mode: 0644]
src/it/tutorials-5.0.12/osgi/unmanaged-jpa/src/main/resources/META-INF/persistence.xml [new file with mode: 0644]
src/it/tutorials-5.0.12/osgi/unmanaged-jpa/src/main/resources/OSGI-INF/blueprint/blueprint.xml [new file with mode: 0644]
src/it/tutorials-5.0.12/osgi/unmanaged-native/features.xml [new file with mode: 0644]
src/it/tutorials-5.0.12/osgi/unmanaged-native/pom.xml [new file with mode: 0644]
src/it/tutorials-5.0.12/osgi/unmanaged-native/src/main/java/org/hibernate/osgitest/DataPointService.java [new file with mode: 0644]
src/it/tutorials-5.0.12/osgi/unmanaged-native/src/main/java/org/hibernate/osgitest/DataPointServiceImpl.java [new file with mode: 0644]
src/it/tutorials-5.0.12/osgi/unmanaged-native/src/main/java/org/hibernate/osgitest/HibernateUtil.java [new file with mode: 0644]
src/it/tutorials-5.0.12/osgi/unmanaged-native/src/main/java/org/hibernate/osgitest/TestIntegrator.java [new file with mode: 0644]
src/it/tutorials-5.0.12/osgi/unmanaged-native/src/main/java/org/hibernate/osgitest/TestStrategyRegistrationProvider.java [new file with mode: 0644]
src/it/tutorials-5.0.12/osgi/unmanaged-native/src/main/java/org/hibernate/osgitest/TestTypeContributor.java [new file with mode: 0644]
src/it/tutorials-5.0.12/osgi/unmanaged-native/src/main/java/org/hibernate/osgitest/command/AddCommand.java [new file with mode: 0644]
src/it/tutorials-5.0.12/osgi/unmanaged-native/src/main/java/org/hibernate/osgitest/command/DeleteAllCommand.java [new file with mode: 0644]
src/it/tutorials-5.0.12/osgi/unmanaged-native/src/main/java/org/hibernate/osgitest/command/GetAllCommand.java [new file with mode: 0644]
src/it/tutorials-5.0.12/osgi/unmanaged-native/src/main/java/org/hibernate/osgitest/command/GetCommand.java [new file with mode: 0644]
src/it/tutorials-5.0.12/osgi/unmanaged-native/src/main/java/org/hibernate/osgitest/command/GetRevisionsCommand.java [new file with mode: 0644]
src/it/tutorials-5.0.12/osgi/unmanaged-native/src/main/java/org/hibernate/osgitest/command/LoadCommand.java [new file with mode: 0644]
src/it/tutorials-5.0.12/osgi/unmanaged-native/src/main/java/org/hibernate/osgitest/command/UpdateCommand.java [new file with mode: 0644]
src/it/tutorials-5.0.12/osgi/unmanaged-native/src/main/java/org/hibernate/osgitest/entity/DataPoint.java [new file with mode: 0644]
src/it/tutorials-5.0.12/osgi/unmanaged-native/src/main/resources/OSGI-INF/blueprint/blueprint.xml [new file with mode: 0644]
src/it/tutorials-5.0.12/osgi/unmanaged-native/src/main/resources/ehcache.xml [new file with mode: 0644]
src/it/tutorials-5.0.12/osgi/unmanaged-native/src/main/resources/hibernate.cfg.xml [new file with mode: 0644]
src/it/tutorials-5.0.12/osgi/unmanaged-native/src/main/resources/pool-one.properties [new file with mode: 0644]
src/it/tutorials-5.0.12/pom.xml [new file with mode: 0644]