-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
55 lines (39 loc) · 1.01 KB
/
build.gradle
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
buildscript {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
}
plugins {
id 'org.javamodularity.moduleplugin' version '1.8.12' apply false
}
subprojects {
apply plugin: 'java'
apply plugin: 'org.javamodularity.moduleplugin'
java {
modularity.inferModulePath = true
}
sourceCompatibility = 21
targetCompatibility = 21
compileJava.options.encoding = 'UTF-8'
compileTestJava.options.encoding = 'UTF-8'
repositories {
mavenCentral()
mavenLocal()
flatDir {
dirs project(':intervalmusiccompositor.build').file('flat_repository')
}
}
dependencies {
testImplementation 'org.assertj:assertj-core:3.13.2'
testImplementation 'junit:junit:4.13-beta-1'
implementation 'org.hamcrest:hamcrest-core:1.3'
testImplementation 'org.mockito:mockito-core:2.23.4'
}
afterEvaluate {
repositories {
mavenCentral()
}
}
}