mirror of
https://github.com/skogaby/butterfly.git
synced 2026-04-26 10:06:50 -05:00
34 lines
1.1 KiB
Groovy
34 lines
1.1 KiB
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'
|
|
|
|
// Log4j, logging
|
|
compile group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.11.1'
|
|
compile group: 'org.slf4j', name: 'slf4j-simple', version:'1.7.21'
|
|
|
|
// Spring, dependency injection
|
|
compile group: 'org.springframework', name: 'spring-context', version: '5.1.3.RELEASE'
|
|
testCompile group: 'org.springframework', name: 'spring-test', version: '5.1.3.RELEASE'
|
|
|
|
// 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'
|
|
compile group: 'org.springframework', name: 'spring-orm', version: '5.1.3.RELEASE'
|
|
compile group: 'org.xerial', name: 'sqlite-jdbc', version: '3.25.2'
|
|
compile group: 'mysql', name: 'mysql-connector-java', version: '8.0.17'
|
|
|
|
|
|
// Models
|
|
implementation project(':butterflymodel')
|
|
}
|