-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.gradle
86 lines (70 loc) · 1.95 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
plugins {
id 'java'
id 'eclipse'
id 'maven-publish'
id 'com.github.johnrengelman.shadow' version '8.1.1'
id 'net.minecraftforge.licenser' version '1.0.1'
id 'net.minecraftforge.gradleutils' version '[2.3,2.4)'
}
group = 'net.minecraftforge'
version = gradleutils.tagOffsetVersion
println "Version: $version"
java {
toolchain {
languageVersion = JavaLanguageVersion.of(8)
}
withSourcesJar()
}
repositories {
mavenCentral()
maven gradleutils.forgeMaven
}
dependencies {
implementation 'net.sf.jopt-simple:jopt-simple:5.0.4'
implementation 'net.minecraftforge:srgutils:0.4.3'
}
license {
header = file('LICENSE-header.txt')
newLine = false
exclude '**/*.properties'
}
tasks.named('jar', Jar).configure {
manifest {
attributes([
'Main-Class': 'net.minecraftforge.jarsplitter.ConsoleTool',
'Implementation-Version': project.version
])
}
}
tasks.named('shadowJar', ShadowJar).configure {
archiveClassifier = 'fatjar'
manifest {
attributes([
'Main-Class': 'net.minecraftforge.jarsplitter.ConsoleTool',
'Implementation-Version': project.version
])
}
}
artifacts {
archives shadowJar
}
publishing {
publications.register('mavenJava', MavenPublication) {
from components.java
artifactId = 'jarsplitter'
pom {
name = 'Jar Splitter'
description = 'Splits a jar file into classes and data, used in the Forge installer'
url = 'https://github.com/MinecraftForge/JarSplitter'
gradleutils.pom.setGitHubDetails(pom, 'JarSplitter')
license gradleutils.pom.Licenses.LGPLv2_1
developers {
developer gradleutils.pom.Developers.LexManos
}
}
}
repositories {
maven gradleutils.publishingForgeMaven
}
}