-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathbuild.gradle
36 lines (29 loc) · 957 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
apply plugin: 'java'
jar {
archiveBaseName = 'borshj'
archiveVersion = rootProject.file('VERSION').text.trim()
manifest {}
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
test {
useJUnitPlatform()
}
repositories {
mavenCentral()
google()
}
dependencies {
// See: https://developer.android.com/jetpack/androidx/releases/annotation
// See: https://mvnrepository.com/artifact/androidx.annotation/annotation
compileOnly 'androidx.annotation:annotation:1.1.0'
// See: https://github.com/junit-team/junit5/releases
// See: https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
// See: https://github.com/cglib/cglib/releases
// See: https://mvnrepository.com/artifact/cglib/cglib
testImplementation 'cglib:cglib:3.3.0'
}