You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
579 B
34 lines
579 B
plugins {
|
|
id 'java'
|
|
id 'scala'
|
|
}
|
|
|
|
group 'org.tbasket'
|
|
version '1.0-SNAPSHOT'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
allprojects {
|
|
apply plugin: 'scala'
|
|
|
|
dependencies {
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
|
|
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
|
|
|
|
implementation 'org.scala-lang:scala-library:2.13.10'
|
|
implementation 'com.typesafe.akka:akka-actor_3:2.7.0'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':API')
|
|
implementation project(':DB')
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
} |