Added tutorials of the hibernate-release 5.3.9.Final
authorKai Moritz <kai@juplo.de>
Fri, 5 Apr 2019 13:15:00 +0000 (15:15 +0200)
committerKai Moritz <kai@juplo.de>
Fri, 5 Apr 2019 14:00:49 +0000 (16:00 +0200)
commitb6520c3daa7fbb64a40ffdaa7fc661023b16043d
tree5f02a674e7795ef75f06d81643eddc06b5cdc605
parentfbab57c262b381d3db470cfd240fbcf9714401cb
Added tutorials of the hibernate-release 5.3.9.Final

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