https://github.com/tsnsoft/hibernate_demo_gradle
Пример приложения с Hibernate для IntelliJ IDEA на Java (сборщик GRADLE)
https://github.com/tsnsoft/hibernate_demo_gradle
gradle hibernate intellij intellij-idea jar java
Last synced: 4 months ago
JSON representation
Пример приложения с Hibernate для IntelliJ IDEA на Java (сборщик GRADLE)
- Host: GitHub
- URL: https://github.com/tsnsoft/hibernate_demo_gradle
- Owner: tsnsoft
- License: mit
- Created: 2021-04-19T12:34:29.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-04-29T15:28:07.000Z (about 4 years ago)
- Last Synced: 2025-01-17T18:32:09.791Z (6 months ago)
- Topics: gradle, hibernate, intellij, intellij-idea, jar, java
- Language: Java
- Homepage:
- Size: 112 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# hibernate_demo_gradle
Пример приложения с Hibernate для IntelliJ IDEA на Java (сборщик GRADLE)https://mvnrepository.com
build.gradle
```
plugins {
id 'application'
}application {
mainClass = 'kz.proffix4.hibernate.Launch'
}group 'kz.proffix4'
version '1.0-SNAPSHOT'repositories {
mavenCentral()
}dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
// https://mvnrepository.com/artifact/org.hibernate/hibernate-core
implementation group: 'org.hibernate', name: 'hibernate-core', version: '5.4.21.Final'
// https://mvnrepository.com/artifact/mysql/mysql-connector-java
implementation group: 'mysql', name: 'mysql-connector-java', version: '8.0.23'
}test {
useJUnitPlatform()
}
```