Files
luxmed-bot/server/build.gradle
2022-08-09 19:14:34 +02:00

32 lines
966 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.1.4"
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.2"
implementation "org.postgresql:postgresql:42.2.26"
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")
}