mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2024-12-15 04:30:29 +00:00
19 lines
299 B
Plaintext
19 lines
299 B
Plaintext
|
plugins {
|
||
|
id("cc-tweaked.java-convention")
|
||
|
id("cc-tweaked.publishing")
|
||
|
id("cc-tweaked.vanilla")
|
||
|
}
|
||
|
|
||
|
java {
|
||
|
withJavadocJar()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
api(project(":core-api"))
|
||
|
compileOnly(project(":forge-stubs"))
|
||
|
}
|
||
|
|
||
|
tasks.javadoc {
|
||
|
include("dan200/computercraft/api/**/*.java")
|
||
|
}
|