-
Notifications
You must be signed in to change notification settings - Fork 10
/
build.gradle
42 lines (39 loc) · 1.08 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
plugins {
id "fabric-loom" apply false
id "info.u_team.gradle_files"
}
group = "info.u-team"
base.archivesName = gradlefiles.archivesName()
version = gradlefiles.version()
gradlefiles {
vendor = "Team UTeam"
orderModPublishTasks(gradlefiles.project("neoforge"), gradlefiles.project("forge"), gradlefiles.project("fabric"))
}
ext.commonPom = { pom ->
pom.description = "${config.github.name}"
pom.url = "https://github.com/MC-U-Team/${config.github.name}"
pom.scm {
url = "https://github.com/MC-U-Team/${config.github.name}"
connection = "scm:git:git://github.com/MC-U-Team/${config.github.name}.git"
developerConnection = "scm:git:[email protected]:MC-U-Team/${config.github.name}.git"
}
pom.issueManagement {
system = "github"
url = "https://github.com/MC-U-Team/${config.github.name}/issues"
}
pom.licenses {
license {
name = "Apache License 2.0"
url = "https://github.com/MC-U-Team/${config.github.name}/blob/${config.github.branch}/LICENSE"
distribution = "repo"
}
}
pom.developers {
developer {
name = "HyCraftHD"
}
developer {
name = "MrTroble"
}
}
}