-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
60 lines (49 loc) · 1.25 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
plugins {
id "com.github.johnrengelman.shadow" version "7.1.2"
}
allprojects {
apply plugin: 'idea'
apply plugin: 'java-library'
group = 'fr.hyriode'
repositories {
mavenCentral()
}
}
version = '1.0.0'
archivesBaseName = 'Hyreos'
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.hyriode.hyreos.HyreosBootstrap'
}
}
repositories {
maven {
name = 'HyriAPI_maven'
url = 'https://maven.pkg.github.com/Hyriode/HyriAPI/'
credentials {
username System.getenv("GITHUB_USERNAME")
password System.getenv("GITHUB_TOKEN")
}
}
}
dependencies {
implementation 'jline:jline:2.14.6'
implementation 'org.yaml:snakeyaml:2.0'
implementation 'org.slf4j:slf4j-api:2.0.7'
implementation "com.influxdb:influxdb-client-java:6.6.0"
implementation('fr.hyriode:hyriapi-app:1.5.2-SNAPSHOT') {
exclude group: "fr.hyriode", module: "hyreos-api"
}
implementation project(":API")
}