Added tutorials of the hibernate-release 5.1.17.Final
authorKai Moritz <kai@juplo.de>
Fri, 5 Apr 2019 11:00:01 +0000 (13:00 +0200)
committerKai Moritz <kai@juplo.de>
Fri, 5 Apr 2019 11:06:47 +0000 (13:06 +0200)
commit3990b3badc8320a705c9899b0a63f40b4b219d1a
tree320a11cb32ed2b8b0a6a7e2a2d8a5a5fe11da058
parentd42dc8bc0d20f97e64dacd7983486fe18af0c8df
Added tutorials of the hibernate-release 5.1.17.Final

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