-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
57 lines (46 loc) · 1.28 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
apply plugin: 'idea'
apply plugin: 'java-library'
group 'fr.hyriode'
version '1.0.0'
archivesBaseName = 'HyriRushTheFlag'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(8)
}
}
compileJava {
sourceCompatibility = JavaVersion.VERSION_1_8
options.encoding = 'UTF-8'
}
configurations.all {
// Check for updates every build
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
}
jar {
manifest {
attributes 'Specific-Version': project.version
attributes 'Implementation-Version': "${ project.version }-${ commitSha }-${ buildNumber }"
}
}
repositories {
mavenCentral()
maven { url = 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/' }
maven { 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(include: ['*.jar'], dir: 'libs')
implementation 'fr.hyriode:hyrame:1.3.9-SNAPSHOT'
}
processResources {
filter {
it.replace('@version@', "${ project.version }-${ commitSha }-${ buildNumber }")
}
}