-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbuild.gradle
More file actions
179 lines (155 loc) · 4.52 KB
/
Copy pathbuild.gradle
File metadata and controls
179 lines (155 loc) · 4.52 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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
plugins {
id 'java'
id 'maven-publish'
id 'java-gradle-plugin'
id 'eclipse'
}
def ENV = System.getenv()
base {
archivesName = project.name
}
version = '47.0'
group = project.maven_group
if (!ENV.MAVEN_URL) {
version += '+local'
}
repositories {
maven {
name = 'Fabric'
url = 'https://maven.fabricmc.net'
}
maven {
name = 'Quilt'
url = 'https://maven.quiltmc.org/repository/release'
}
maven {
name = 'Ornithe'
url = 'https://maven.ornithemc.net/releases'
}
mavenCentral()
}
dependencies {
implementation gradleApi()
// Remember to update ProcessorSettings.PROCESSOR_VERSION when
// one of the dependencies for jar processing is updated!
implementation 'de.undercouch.download:de.undercouch.download.gradle.plugin:5.6.0'
implementation 'commons-io:commons-io:2.8.0'
implementation 'com.google.code.gson:gson:2.10.1'
implementation 'com.google.guava:guava:33.1.0-jre'
implementation 'com.vdurmont:semver4j:3.1.0'
implementation 'org.ow2.asm:asm:9.8'
implementation 'org.ow2.asm:asm-commons:9.8'
implementation 'org.ow2.asm:asm-tree:9.8'
implementation 'org.ow2.asm:asm-util:9.8'
implementation 'net.ornithemc:enigma-cli:1.2.7'
implementation 'net.ornithemc:stitch:0.25.3'
implementation 'net.ornithemc:mapping-utils:0.19.2'
implementation 'net.ornithemc:condor:1.4.5'
implementation 'net.ornithemc:exceptor:1.1.0'
implementation 'net.ornithemc:preen:1.1.0'
implementation 'net.ornithemc:nester:1.5.0'
implementation "net.fabricmc.unpick:unpick:2.3.0"
implementation "net.fabricmc.unpick:unpick-format-utils:2.3.0"
implementation "net.fabricmc.unpick:unpick-cli:2.3.0"
implementation 'net.fabricmc:tiny-remapper:0.9.0'
implementation 'net.fabricmc:name-proposal:0.2.0'
implementation 'net.fabricmc:mapping-io:0.5.1'
implementation('net.fabricmc.filament:net.fabricmc.filament.gradle.plugin:0.10.1') {
exclude group: 'cuchaz'
exclude group: 'net.fabricmc.unpick'
}
implementation 'io.github.gaming32:signature-changer:1.0.0'
}
tasks.withType(JavaCompile).configureEach {
it.options.encoding = "UTF-8"
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
withSourcesJar()
}
jar {
manifest {
attributes 'Implementation-Version': project.version
}
}
gradlePlugin {
plugins {
keratin {
id = 'keratin'
implementationClass = 'net.ornithemc.keratin.KeratinGradlePlugin'
}
}
}
import org.w3c.dom.Document
import org.w3c.dom.Element
import org.w3c.dom.Node
publishing {
publications {
plugin(MavenPublication) {
groupId group
artifactId base.archivesName.get()
version version
from components.java
}
// Also publish a snapshot so people can use the latest version if they wish
snapshot(MavenPublication) {
groupId project.group
artifactId project.base.archivesName.get()
version project.version + "-SNAPSHOT"
from components.java
}
// Manually crate the plugin marker for snapshot versions
snapshotPlugin(MavenPublication) {
groupId 'keratin'
artifactId 'keratin.gradle.plugin'
version project.version + '-SNAPSHOT'
pom.withXml({
// Based off org.gradle.plugin.devel.plugins.MavenPluginPublishPlugin
Element root = asElement()
Document document = root.getOwnerDocument()
Node dependencies = root.appendChild(document.createElement('dependencies'))
Node dependency = dependencies.appendChild(document.createElement('dependency'))
Node groupId = dependency.appendChild(document.createElement('groupId'))
groupId.setTextContent('net.ornithemc')
Node artifactId = dependency.appendChild(document.createElement('artifactId'))
artifactId.setTextContent('keratin')
Node version = dependency.appendChild(document.createElement('version'))
version.setTextContent(project.version + '-SNAPSHOT')
})
}
}
repositories {
maven {
name = 'release'
if (ENV.MAVEN_URL) {
url ENV.MAVEN_URL
credentials {
username ENV.MAVEN_USERNAME
password ENV.MAVEN_PASSWORD
}
}
}
maven {
name = "snapshot"
if (ENV.SNAPSHOTS_URL) {
url ENV.SNAPSHOTS_URL
credentials {
username ENV.SNAPSHOTS_USERNAME
password ENV.SNAPSHOTS_PASSWORD
}
}
}
}
}
tasks.withType(PublishToMavenRepository) {
onlyIf {
(repository == publishing.repositories.release && publication == publishing.publications.plugin)
||
(repository == publishing.repositories.snapshot
&& (publication == publishing.publications.snapshot
|| publication == publishing.publications.snapshotPlugin))
|| (repository == publishing.repositories.release && publication.name == "keratinPluginMarkerMaven")
}
}