mirror of
https://github.com/skogaby/butterfly.git
synced 2026-04-26 01:44:56 -05:00
19 lines
413 B
Groovy
19 lines
413 B
Groovy
group 'com.buttongames'
|
|
version '1.0-SNAPSHOT'
|
|
|
|
apply plugin: 'java'
|
|
|
|
sourceCompatibility = 1.11
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testCompile group: 'junit', name: 'junit', version: '4.12'
|
|
|
|
// Hibernate, SQL support
|
|
compile group: 'org.hibernate', name: 'hibernate-core', version: '5.4.0.Final'
|
|
compile group: 'org.hibernate', name: 'hibernate-java8', version: '5.4.0.Final'
|
|
}
|