-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathbuild.gradle
44 lines (30 loc) · 902 Bytes
/
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
allprojects {
apply plugin: 'idea'
apply plugin: 'checkstyle'
checkstyle {
toolVersion "8.11"
}
repositories {
mavenCentral()
jcenter{ url "https://jcenter.bintray.com/" }
maven { url 'https://oss.sonatype.org/service/local/repositories/snapshots/content' }
maven { url "https://jitpack.io" }
jcenter()
maven { url 'https://repo.jenkins-ci.org/public'}
}
}
subprojects {
version = '0.0.1'
group = 'org.mitre'
apply plugin: 'java'
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.1.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.1.0'
testCompileOnly 'junit:junit:4.12'
testRuntimeOnly 'org.junit.vintage:junit-vintage-engine:5.1.0'
}
test {
exclude '**/*IntegrationTest*'
useJUnitPlatform()
}
}