-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathbuild.gradle
104 lines (87 loc) · 2.85 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
plugins {
id 'java-gradle-plugin'
id 'groovy'
id 'idea'
id 'eclipse'
id 'maven-publish'
id 'net.minecraftforge.licenser' version '1.1.1'
id 'net.minecraftforge.gradleutils'
id 'com.gradle.plugin-publish' version '1.3.1'
id 'com.gradleup.shadow' version '8.3.6'
}
final projectDisplayName = 'Forge Gradle Utilities'
description = 'Small collection of utilities for standardizing MinecraftForge gradle scripts'
group = 'net.minecraftforge'
version = gitversion.tagOffset
println "Version: $version"
apply from: 'build_shared.gradle'
license {
header = file('LICENSE-header.txt')
newLine = false
exclude '** /*.properties'
}
tasks.named('jar', Jar) {
archiveClassifier = 'thin'
}
tasks.named('shadowJar', ShadowJar) {
enableRelocation = true
archiveClassifier = null
relocationPrefix = 'net.minecraftforge.gradleutils.shadow'
}
javadoc.enabled = false
groovydoc.use = true
// javadocJar is created after evaluation, so we need to configure it here
afterEvaluate {
tasks.named('javadocJar', Jar) {
dependsOn tasks.named('groovydoc', Groovydoc)
from groovydoc.destinationDir
}
}
changelog {
fromBase()
publishAll = false
}
gradlePlugin {
website.set gitversion.url
vcsUrl.set gitversion.url + '.git'
plugins {
gradleutils {
id = 'net.minecraftforge.gradleutils'
implementationClass = 'net.minecraftforge.gradleutils.GradleUtilsPlugin'
displayName = projectDisplayName
description = project.description
tags.set(['minecraftforge'])
}
changelog {
id = 'net.minecraftforge.changelog'
implementationClass = 'net.minecraftforge.gradleutils.changelog.ChangelogPlugin'
displayName = 'Git Changelog'
description = 'Creates a changelog text file based on git history using GitVersion'
tags.set(['git', 'changelog'])
}
}
}
publishing {
publications.register('pluginMaven', MavenPublication) {
changelog.publish(it)
pom { pom ->
artifactId = project.name
name = projectDisplayName
description = project.description
gradleutils.pom.gitHubDetails = pom
license gradleutils.pom.licenses.LGPLv2_1
// TODO [GradleUtils] Re-evaluate active developers in GU 3.0
developers {
developer gradleutils.pom.developers.LexManos
developer gradleutils.pom.developers.SizableShrimp
developer gradleutils.pom.developers.Paint_Ninja
developer gradleutils.pom.developers.Jonathing
}
}
}
repositories {
maven gradleutils.publishingForgeMaven
}
}
idea.module { downloadSources = downloadJavadoc = true }