mirror of
https://github.com/dyrkin/luxmed-bot.git
synced 2026-01-01 02:27:24 +01:00
32 lines
723 B
Groovy
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')
|
|
}
|
|
|
|
|