Files
luxmed-bot/server/build.gradle
Eugene Zadyra 68557d960a Initial commit
2018-05-31 00:28:58 +02:00

32 lines
723 B
Groovy

buildscript {
ext {
springBootVersion = '2.0.2.RELEASE'
}
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
apply plugin: 'java'
apply plugin: 'scala'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
dependencies {
compile project(':api')
compile project(':bot')
compile project(':common')
compile('org.springframework.boot:spring-boot-starter')
compile('org.springframework.boot:spring-boot-starter-data-jpa')
compile('org.jasypt:jasypt:1.9.2')
compile('org.postgresql:postgresql:42.2.1.jre7')
}