-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
36 lines (33 loc) · 1.21 KB
/
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
plugins {
id 'com.diffplug.blowdryer'
id 'com.diffplug.spotless-changelog'
}
spotlessChangelog {
changelogFile 'CHANGES.md'
tagPrefix 'versions/'
ifFoundBumpAdded '### Added', '### Changed'
}
apply from: 干.file('base/changelog.gradle')
apply from: 干.file('base/java8.gradle')
apply from: 干.file('base/gradle-plugin.gradle')
apply from: 干.file('base/maven.gradle')
apply from: 干.file('base/sonatype.gradle')
apply from: 干.file('spotless/freshmark.gradle')
apply from: 干.file('spotless/java.gradle')
test.testLogging.exceptionFormat = 'full'
dependencies {
// misc
implementation 'com.diffplug.durian:durian-core:1.2.0'
implementation 'com.diffplug.durian:durian-collect:1.2.0'
implementation 'com.diffplug.durian:durian-io:1.2.0'
// svg
implementation 'org.apache.xmlgraphics:batik-rasterizer:1.14'
implementation 'org.apache.xmlgraphics:batik-codec:1.14'
// testing
testImplementation 'junit:junit:4.13.2'
testImplementation 'org.assertj:assertj-core:3.19.0'
testImplementation 'org.assertj:assertj-swing-junit:3.17.1'
// we'll want the findbugs annotations (they don't have a 3.0.1 version)
compileOnly 'com.google.code.findbugs:annotations:3.0.1'
compileOnly 'com.google.code.findbugs:jsr305:3.0.2'
}