-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathbuild.gradle
More file actions
37 lines (28 loc) · 750 Bytes
/
Copy pathbuild.gradle
File metadata and controls
37 lines (28 loc) · 750 Bytes
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
buildscript {
ext {
rootGradleDir = "${rootProject.rootDir}/gradle"
}
}
plugins {
id 'application'
id 'java'
}
apply from: "${rootGradleDir}/staticCodeAnalysis.gradle"
repositories {
mavenCentral()
}
group = 'io.sixhours.analysis'
version '1.0.0-SNAPSHOT'
targetCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = JavaVersion.VERSION_1_8
mainClassName = 'io.sixhours.analysis.App'
jar {
archiveName = "analysis.jar"
}
dependencies {
annotationProcessor 'org.projectlombok:lombok:1.18.2'
compileOnly 'org.projectlombok:lombok:1.18.2'
testImplementation 'junit:junit:4.12'
testImplementation 'org.assertj:assertj-core:3.11.0'
testImplementation 'org.mockito:mockito-core:2.21.0'
}