-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
54 lines (42 loc) · 1.16 KB
/
build.gradle
File metadata and controls
54 lines (42 loc) · 1.16 KB
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
plugins {
id "com.github.johnrengelman.shadow" version "7.1.2" apply false
}
allprojects {
apply plugin: 'idea'
apply plugin: 'java-library'
apply plugin: 'maven-publish'
group = 'fr.hyriode'
version = '1.5.2-SNAPSHOT'
java {
withSourcesJar()
withJavadocJar()
toolchain {
languageVersion = JavaLanguageVersion.of(8)
}
}
compileJava {
sourceCompatibility = JavaVersion.VERSION_1_8
options.encoding = 'UTF-8'
}
repositories {
mavenCentral()
maven { url 'https://repo1.maven.org/maven2' }
maven {
name = 'Hyggdrasil_maven'
url = 'https://maven.pkg.github.com/Hyriode/Hyggdrasil/'
credentials {
username System.getenv('GITHUB_USERNAME')
password System.getenv('GITHUB_TOKEN')
}
}
}
tasks.withType(Javadoc) {
options.encoding = 'UTF-8'
}
jar {
manifest {
attributes 'Specific-Version': project.version
attributes 'Implementation-Version': "${ project.version }-${ commitSha }-${ buildNumber }"
}
}
}