mirror of
https://github.com/dyrkin/luxmed-bot.git
synced 2025-12-21 13:23:05 +01:00
25 lines
632 B
Groovy
25 lines
632 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.0.4"
|
|
|
|
testImplementation "org.mockito:mockito-core:2.13.0"
|
|
testImplementation "org.pegdown:pegdown:1.6.0"
|
|
}
|
|
}
|