mirror of
https://github.com/dyrkin/luxmed-bot.git
synced 2025-12-21 13:23:05 +01:00
32 lines
965 B
Groovy
32 lines
965 B
Groovy
apply plugin: "org.springframework.boot"
|
|
apply plugin: "io.spring.dependency-management"
|
|
|
|
dependencies {
|
|
implementation project(":api")
|
|
implementation project(":bot")
|
|
implementation project(":common")
|
|
|
|
implementation "com.lihaoyi:sourcecode_$scala:0.3.0"
|
|
|
|
implementation "org.springframework.boot:spring-boot-starter"
|
|
implementation "org.springframework.boot:spring-boot-starter-data-jpa"
|
|
implementation "org.liquibase:liquibase-core"
|
|
|
|
implementation 'org.jasypt:jasypt:1.9.3'
|
|
implementation 'org.postgresql:postgresql:42.3.6'
|
|
|
|
testImplementation "com.typesafe.akka:akka-testkit_$scala:2.6.19"
|
|
testImplementation "org.springframework.boot:spring-boot-starter-test"
|
|
testImplementation "com.h2database:h2"
|
|
|
|
// fixme: remove junit
|
|
testImplementation 'junit:junit:4.13.2'
|
|
}
|
|
|
|
task prepare(type: Copy) {
|
|
dependsOn assemble
|
|
from file("${project.buildDir}/libs")
|
|
into file("${project.rootDir}/docker")
|
|
}
|
|
|