-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
56 lines (45 loc) · 1.14 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
apply plugin: 'idea'
apply plugin: 'java-library'
group = 'fr.hyriode'
version = '1.0.0'
archivesBaseName = 'HyriMoutron'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(8)
}
}
compileJava {
targetCompatibility = sourceCompatibility = JavaVersion.VERSION_1_8
options.encoding = 'UTF-8'
}
tasks.withType(Javadoc) {
options.encoding = 'UTF-8'
}
repositories {
mavenCentral()
maven {
name = 'spigotmc-repo'
url = 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/'
}
maven {
name = 'sonatype'
url = 'https://oss.sonatype.org/content/groups/public/'
}
maven {
name = 'Hyrame_maven'
url 'https://maven.pkg.github.com/Hyriode/Hyrame/'
credentials {
username System.getenv("GITHUB_USERNAME")
password System.getenv("GITHUB_TOKEN")
}
}
}
dependencies {
compileOnly fileTree(dir: 'libs', include: ['*.jar'])
implementation 'fr.hyriode:hyrame:1.3.9-SNAPSHOT'
}
processResources {
filter {
it.replace('@version@', "${ project.version }-${ commitSha }-${ buildNumber }")
}
}