-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
40 lines (33 loc) · 813 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
plugins {
id 'java'
id 'application'
id 'org.sonarqube' version '3.0'
}
group 'com.auzeill.github.tools'
version '1.0-SNAPSHOT'
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
compileOnly 'com.google.code.findbugs:jsr305:3.0.2'
implementation 'com.google.code.gson:gson:2.8.6'
testImplementation "org.junit.jupiter:junit-jupiter-api:5.7.0"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.7.0"
testImplementation "org.junit.jupiter:junit-jupiter-params:5.7.0"
testImplementation "org.assertj:assertj-core:3.11.1"
}
test {
useJUnitPlatform()
}
ext {
javaMainClass = "com.auzeill.github.tools.ExtractMain"
}
application {
mainClass.set( javaMainClass )
}
jar {
manifest {
attributes 'Main-Class': javaMainClass
}
}