-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
61 lines (49 loc) · 1.48 KB
/
build.gradle
File metadata and controls
61 lines (49 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
}
def base_version = '0.4-SNAPSHOT'
allprojects {
group 'dev.rudiments'
version base_version
repositories {
mavenLocal()
mavenCentral()
}
}
def scalaModules() {
subprojects.findAll { new File(it.projectDir, 'src/main/scala').directory }
}
configure(scalaModules()) {
apply plugin: 'java'
apply plugin: 'scala'
sourceCompatibility = 17
targetCompatibility = 17
test {
reports {
html.required = true
junitXml.required = true
}
maxHeapSize = "2048m"
testLogging {
events "skipped", "failed"
exceptionFormat "full"
}
}
dependencies {
implementation 'org.scala-lang:scala-library:2.13.7'
implementation 'com.typesafe.akka:akka-actor_2.13:2.6.17'
implementation 'com.typesafe.akka:akka-slf4j_2.13:2.6.17'
implementation 'com.typesafe.akka:akka-stream_2.13:2.6.17'
implementation 'com.beachape:enumeratum_2.13:1.7.0'
implementation 'com.typesafe.scala-logging:scala-logging_2.13:3.9.4'
implementation 'org.slf4j:slf4j-api:1.7.32'
testImplementation 'org.scalatest:scalatest_2.13:3.2.10'
testImplementation 'org.scalatestplus:junit-4-13_2.13:3.2.10.0'
testImplementation 'junit:junit:4.13.2'
testImplementation 'ch.qos.logback:logback-classic:1.2.7'
}
}