mirror of
https://github.com/Minestom/Minestom.git
synced 2024-12-29 04:28:21 +01:00
Export codegen feature + correct javadoc
This commit is contained in:
parent
890cfe4622
commit
4079d8e746
@ -67,14 +67,20 @@ sourceSets {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Minestom uses LWJGL libs as optional dependency if interfacing with a GPU is asked
|
|
||||||
java {
|
java {
|
||||||
|
// Minestom uses LWJGL libs as optional dependency if interfacing with a GPU is asked
|
||||||
registerFeature("lwjgl") {
|
registerFeature("lwjgl") {
|
||||||
usingSourceSet(sourceSets.lwjgl)
|
usingSourceSet(sourceSets.lwjgl)
|
||||||
withJavadocJar()
|
withJavadocJar()
|
||||||
withSourcesJar()
|
withSourcesJar()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
registerFeature("generators") {
|
||||||
|
usingSourceSet(sourceSets.generators)
|
||||||
|
withJavadocJar()
|
||||||
|
withSourcesJar()
|
||||||
|
}
|
||||||
|
|
||||||
withJavadocJar()
|
withJavadocJar()
|
||||||
withSourcesJar()
|
withSourcesJar()
|
||||||
}
|
}
|
||||||
|
@ -56,7 +56,7 @@ public interface SerializableData extends Data {
|
|||||||
void readIndexedSerializedData(BinaryReader reader);
|
void readIndexedSerializedData(BinaryReader reader);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the index info (class name -> class index)
|
* Get the index info (class name -> class index)
|
||||||
* <p>
|
* <p>
|
||||||
* Sized by a var-int
|
* Sized by a var-int
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user