mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2024-11-05 09:36:19 +00:00
266182996d
Like all publishing code, we'll only find out if it works when we run it!
25 lines
369 B
Plaintext
25 lines
369 B
Plaintext
// SPDX-FileCopyrightText: 2022 The CC: Tweaked Developers
|
|
//
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
plugins {
|
|
id("cc-tweaked.fabric")
|
|
id("cc-tweaked.publishing")
|
|
}
|
|
|
|
java {
|
|
withJavadocJar()
|
|
}
|
|
|
|
cct.inlineProject(":common-api")
|
|
|
|
dependencies {
|
|
api(project(":core-api"))
|
|
}
|
|
|
|
tasks.jar {
|
|
manifest {
|
|
attributes["Fabric-Loom-Remap"] = "true"
|
|
}
|
|
}
|