-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
53 lines (43 loc) · 1.44 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.6.20'
}
group 'io.stacrypt'
version '0.0.1-SNAPSHOT'
allprojects {
repositories {
google()
mavenCentral()
jcenter()
maven { url "https://jitpack.io" }
}
}
repositories {
mavenCentral()
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib"
implementation("com.github.komputing.khex:khex-common:1.0.0-RC3")
implementation("com.github.komputing.khex:core-common:1.0.0-RC3")
implementation("com.github.komputing.khex:core-jvm:1.0.0-RC3")
implementation("com.github.komputing.khex:extensions-common:1.0.0-RC3")
implementation("com.github.komputing.khex:extensions-jvm:1.0.0-RC3")
implementation 'commons-codec:commons-codec:1.15'
// Bouncy castle
implementation group: 'org.bouncycastle', name: 'bcpkix-jdk15on', version: '1.68'
implementation group: 'com.github.komputing.Khash', name: 'ripemd160', version: '1.0.0-RC5'
// Test
testImplementation("org.junit.jupiter:junit-jupiter:5.4.0")
testImplementation("junit:junit:4.12")
testImplementation group: 'org.assertj', name: 'assertj-core', version: '3.19.0'
testImplementation "com.github.komputing:khex:1.0.0-RC3"
implementation group: 'org.jetbrains.kotlin', name: 'kotlin-test', version: '1.5.0'
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
test {
useJUnitPlatform()
}