-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
48 lines (36 loc) · 927 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 "com.github.johnrengelman.shadow" version "7.1.2"
}
allprojects {
apply plugin: 'idea'
apply plugin: 'java-library'
group = 'fr.fistin'
archivesBaseName = 'Hydra'
repositories {
mavenCentral()
}
}
version = '1.5.0'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(18)
}
}
compileJava {
sourceCompatibility = JavaVersion.VERSION_18
options.encoding = 'UTF-8'
}
shadowJar {
configurations = [project.configurations.runtimeClasspath]
archiveVersion.set('')
manifest {
attributes 'Main-Class': 'fr.fistin.hydra.HydraBootstrap'
}
}
dependencies {
implementation project(":API")
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.13.4'
implementation 'io.fabric8:kubernetes-client:6.2.0'
implementation 'org.slf4j:slf4j-nop:2.0.3'
implementation 'jline:jline:2.14.6'
}