-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
37 lines (30 loc) · 1.01 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
37
plugins {
id 'java'
id("maven-publish")
}
group 'com.github.salpadding'
version '1.0.2'
repositories {
mavenCentral()
}
sourceCompatibility = 1.8
ext{
lombokVersion = '1.18.10'
commonsCodecVersion = '1.13'
scastleVersion = '1.58.0.0'
jacksonVersion = '2.10.0'
}
dependencies {
testImplementation group: 'junit', name: 'junit', version: '4.12'
compileOnly "org.projectlombok:lombok:${lombokVersion}"
testCompileOnly "org.projectlombok:lombok:${lombokVersion}"
annotationProcessor "org.projectlombok:lombok:${lombokVersion}"
testAnnotationProcessor "org.projectlombok:lombok:${lombokVersion}"
testImplementation "commons-codec:commons-codec:${commonsCodecVersion}"
testImplementation "com.madgag.spongycastle:core:${scastleVersion}" // for rlp encoding
testImplementation "com.madgag.spongycastle:prov:${scastleVersion}" // for rlp encoding
testImplementation "com.fasterxml.jackson.core:jackson-databind:${jacksonVersion}"
}
jar{
from sourceSets.main.allSource
}