mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2024-11-05 09:36:19 +00:00
320007dbc6
- Publish javadoc again: for now this is just the common-api - Remove all dependencies from the published Forge jar. This is technically not needed (fg.deobf does this anyway), but seems sensible.
27 lines
385 B
Plaintext
27 lines
385 B
Plaintext
plugins {
|
|
id("cc-tweaked.forge")
|
|
id("cc-tweaked.publishing")
|
|
}
|
|
|
|
java {
|
|
withJavadocJar()
|
|
}
|
|
|
|
cct.inlineProject(":common-api")
|
|
|
|
dependencies {
|
|
api(project(":core-api"))
|
|
}
|
|
|
|
tasks.javadoc {
|
|
include("dan200/computercraft/api/**/*.java")
|
|
}
|
|
|
|
publishing {
|
|
publications {
|
|
named("maven", MavenPublication::class) {
|
|
fg.component(this)
|
|
}
|
|
}
|
|
}
|