-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
49 lines (32 loc) · 993 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
37
38
39
40
41
42
43
44
45
46
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.4.30'
id 'org.hidetake.ssh' version '2.10.1'
id 'dev.implario.bundler' version '3.0.2'
}
allprojects {
repositories {
maven {
url 'https://repo.implario.dev/public'
}
mavenCentral()
mavenLocal()
}
}
subprojects {
apply plugin: 'kotlin'
apply plugin: 'dev.implario.bundler'
dependencies {
compileOnly 'ru.cristalix:client-api:latest-SNAPSHOT'
implementation 'ru.cristalix:client-sdk:5.3.0'
implementation 'ru.cristalix:uiengine:3.13.8'
implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.4.30'
}
// configurations.all {
// resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
// }
afterEvaluate {
jar.from configurations.runtimeClasspath.collect(project.&zipTree)
}
compileKotlin['kotlinOptions'].jvmTarget = "1.8"
}
if (file('upload.gradle').file) apply from: 'upload.gradle'