This repository was archived by the owner on Dec 12, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
77 lines (62 loc) · 2.55 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.3.21' apply(false)
}
allprojects {
apply plugin: 'org.jetbrains.kotlin.jvm'
group 'rsbox'
version '1.0'
ext {
jvmVersion = '1.8'
junitVersion = '4.12'
kotlinVersion = '1.3.11'
kcoroutineVersion = '1.1.0'
nettyVersion = '4.0.34.Final'
gsonVersion = '2.8.5'
yamlVersion = '2.5.0'
jacksonVersion = '2.5.0'
reflectionsVersion = '0.9.11'
runeliteVersion = 'runelite-parent-1.5.2.1'
commonsIoVersion = '2.4'
bcryptVersion = '0.4'
bouncycastleVersion = '1.54'
slf4jVersion = '1.7.25'
log4jVersion = '2.11.2'
kloggingVersion = '1.5.9'
classGraphVersion = '4.6.12'
fastUtilVersion = '7.0.7'
}
repositories {
mavenLocal()
jcenter()
maven { url "https://repo.maven.apache.org/maven2" }
maven { url 'https://jitpack.io' }
}
configurations {
ktlint
}
dependencies {
ktlint "com.github.shyiko:ktlint:0.15.0"
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlinVersion"
compile "org.slf4j:slf4j-api:$slf4jVersion"
compile "org.apache.logging.log4j:log4j-slf4j-impl:$log4jVersion"
compile "io.github.microutils:kotlin-logging:$kloggingVersion"
compile 'com.uchuhimo:konf:0.13.3'
compile 'io.github.microutils:kotlin-logging:1.7.2'
compile 'com.github.uchuhimo:konf:master-SNAPSHOT'
compile "org.jetbrains.kotlin:kotlin-scripting-common:$kotlinVersion"
compile "org.jetbrains.kotlin:kotlin-script-runtime:$kotlinVersion"
compile "org.jetbrains.kotlinx:kotlinx-coroutines-core:$kcoroutineVersion"
compile group: 'org.jetbrains.kotlin', name: 'kotlin-reflect', version: '1.3.41'
compile group: 'org.reflections', name: 'reflections', version: '0.9.10'
compile "org.reflections:reflections:$reflectionsVersion"
compile "commons-io:commons-io:$commonsIoVersion"
compile "io.github.classgraph:classgraph:$classGraphVersion"
compile "it.unimi.dsi:fastutil:$fastUtilVersion"
implementation "org.bouncycastle:bcprov-jdk15on:$bouncycastleVersion"
implementation "org.mindrot:jbcrypt:$bcryptVersion"
implementation "com.google.code.gson:gson:$gsonVersion"
implementation "com.github.runelite.runelite:cache:$runeliteVersion"
implementation "io.netty:netty-all:$nettyVersion"
testCompile "org.jetbrains.kotlin:kotlin-test-junit:$kotlinVersion"
}
}