forked from furstenheim/copy-down
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
49 lines (40 loc) · 960 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
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.vanniktech:gradle-maven-publish-plugin:0.21.0'
}
}
plugins {
id 'java'
id 'com.vanniktech.maven.publish' version "0.21.0"
id 'signing'
}
group 'io.github.furstenheim'
version '1.1'
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
mavenCentral()
}
test {
testLogging {
events "failed"
exceptionFormat "full"
showStandardStreams true
}
useJUnitPlatform()
}
dependencies {
testImplementation (
'org.junit.jupiter:junit-jupiter-api:5.9.0',
'org.hamcrest:hamcrest-library:2.2',
'org.junit.jupiter:junit-jupiter-engine:5.9.0',
'org.junit.jupiter:junit-jupiter-params:5.9.0',
'com.shazam:shazamcrest:0.11',
'com.google.code.gson:gson:2.9.0'
)
implementation 'org.jsoup:jsoup:1.15.2'
}