Files
luxmed-bot/build.gradle
2022-08-10 16:15:53 +02:00

26 lines
757 B
Groovy

plugins {
id "com.github.maiflai.scalatest" version "0.32"
id "org.springframework.boot" version "2.7.2"
}
allprojects {
apply plugin: "scala"
apply plugin: "java-library"
apply plugin: "com.github.maiflai.scalatest"
repositories {
mavenCentral()
maven { url "https://repo.spring.io/libs-milestone" }
}
dependencies {
compileOnly "org.scala-lang:scala-library:$scala.$scala_minor"
testImplementation "org.scalatest:scalatest_$scala:3.2.11"
testRuntimeOnly 'com.vladsch.flexmark:flexmark-all:0.62.2' // version depends on scalatest dependency
testImplementation "org.scalatestplus:mockito-4-2_$scala:3.2.11.0"
testImplementation "org.pegdown:pegdown:1.6.0"
}
}