-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathbuild.gradle
49 lines (40 loc) · 1.04 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
plugins {
id 'java'
id 'maven-publish'
id 'com.github.johnrengelman.shadow' version '8.1.1'
}
group 'com.hakan'
version '0.7.3.3'
sourceCompatibility = 8
compileJava.options.encoding = 'UTF-8'
subprojects {
apply plugin: 'java'
apply plugin: 'maven-publish'
apply plugin: 'com.github.johnrengelman.shadow'
group rootProject.group
version rootProject.version
sourceCompatibility = 8
compileJava.options.encoding = 'UTF-8'
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
maven { url 'https://libraries.minecraft.net/' }
maven { url 'https://repo.codemc.org/repository/nms/' }
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
}
/*
javadoc {
destinationDir = file("docs/javadoc")
}
*/
artifacts.archives(tasks.shadowJar)
tasks.jar {
enabled = true
}
tasks.shadowJar {
archiveFileName.set(project.name + "-" + project.version + ".jar")
}
}
tasks.jar {
enabled = false
}