forked from MeteorDevelopment/meteor-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
137 lines (111 loc) · 3.52 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
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
plugins {
id 'fabric-loom' version '0.10-SNAPSHOT'
id 'maven-publish'
id 'com.github.johnrengelman.shadow' version '7.1.2'
}
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_17
archivesBaseName = project.archives_base_name
version = project.mod_version + (System.getenv("CIRCLE_BUILD_NUM") != null ? ("-" + System.getenv("CIRCLE_BUILD_NUM")) : "")
group = project.maven_group
repositories {
maven {
name = "meteor-maven"
url = "https://maven.meteordev.org"
}
maven {
name = "meteor-maven-snapshots"
url = "https://maven.meteordev.org/snapshots"
}
maven {
name = "vram"
url = "https://maven.vram.io//"
}
}
dependencies {
def library = { id ->
implementation id
shadow id
}
// Fabric
minecraft "com.mojang:minecraft:${project.minecraft_version}"
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
// Compat fixes
modCompileOnly fabricApi.module("fabric-renderer-indigo", project.api_version)
modCompileOnly("me.jellysquid.mods:sodium-fabric:${project.sodium_version}") { transitive = false }
modCompileOnly("io.vram:canvas-fabric-mc118:1.0.+") { transitive = false }
// Baritone integration
modImplementation "baritone:baritone:${project.baritone_version}"
include "baritone:baritone:${project.baritone_version}"
// Libraries
library "meteordevelopment:orbit:${project.orbit_version}"
library "meteordevelopment:starscript:${project.starscript_version}"
library "meteordevelopment:discord-ipc:${project.discordipc_version}"
library "org.reflections:reflections:${project.reflections_version}"
}
loom {
accessWidenerPath = file("src/main/resources/meteor-client.accesswidener")
}
shadowJar {
configurations = [ project.configurations.shadow ]
}
processResources {
filesMatching("fabric.mod.json") {
expand "version": project.version, "devbuild": System.getenv("CIRCLE_BUILD_NUM") != null ? System.getenv("CIRCLE_BUILD_NUM") : ""
}
}
tasks.withType(JavaCompile).configureEach {
it.options.encoding("UTF-8")
}
jar {
from "LICENSE"
manifest {
attributes("Main-Class": "meteordevelopment.meteorclient.Main")
}
}
remapJar {
dependsOn shadowJar
input.set(shadowJar.archiveFile)
}
javadoc {
options.addStringOption('Xdoclint:none', '-quiet')
}
task sourcesJar(type: Jar, dependsOn: classes) {
archiveClassifier.set("sources")
from sourceSets.main.allSource
}
task javadocJar(type: Jar) {
archiveClassifier.set("javadoc")
from javadoc
}
publishing {
publications {
java(MavenPublication) {
artifactId = "meteor-client"
version = System.getenv("CIRCLE_BUILD_NUM") == null ? project.mod_version : "SNAPSHOT"
artifact(remapJar) {
builtBy remapJar
}
artifact(sourcesJar) {
builtBy remapSourcesJar
}
artifact(javadocJar) {
builtBy javadocJar
}
}
}
repositories {
maven {
name = "meteor-maven"
url = System.getenv("CIRCLE_BUILD_NUM") == null ? "https://maven.meteordev.org" : "https://maven.meteordev.org/snapshots"
credentials {
username = System.getenv("MAVEN_METEOR_ALIAS")
password = System.getenv("MAVEN_METEOR_TOKEN")
}
authentication {
basic(BasicAuthentication)
}
}
}
}
apply from: "scripts/packetutils.gradle"