forked from furstenheim/copy-down
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
51 lines (43 loc) · 1018 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
43
44
45
46
47
48
49
50
51
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.vanniktech:gradle-maven-publish-plugin:0.8.0'
}
}
plugins {
id 'java'
//id 'com.vanniktech.maven.publish' version "0.11.1"
id 'signing'
}
group 'io.github.furstenheim'
version '1.0.2'
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
mavenCentral()
}
test {
testLogging {
events "failed"
exceptionFormat "full"
showStandardStreams true
}
useJUnitPlatform()
}
dependencies {
testCompile (
"org.junit.jupiter:junit-jupiter-api:5.0.0-M4",
"org.hamcrest:hamcrest-library:2.1",
"org.junit.jupiter:junit-jupiter-engine:5.5.2",
"org.junit.jupiter:junit-jupiter-params:5.4.2",
"com.shazam:shazamcrest:0.1",
'com.google.code.gson:gson:2.8.6'
)
compile (
'org.jsoup:jsoup:1.13.1',
'org.projectlombok:lombok:1.18.22'
)
}