mirror of
https://github.com/FabricMC/fabric.git
synced 2024-11-23 08:08:02 -05:00
e1e947a65f
* Clean up to tool-attributes, add annotations and add test for custom tool types. Signed-off-by: shedaniel <daniel@shedaniel.me> * Change version to 1.2.3 Signed-off-by: shedaniel <daniel@shedaniel.me> * remove unrelated change Signed-off-by: shedaniel <daniel@shedaniel.me> * Turn build.gradle to tabs Signed-off-by: shedaniel <daniel@shedaniel.me> * Fix checkstyle Signed-off-by: shedaniel <daniel@shedaniel.me> * Fix some review issues Signed-off-by: shedaniel <daniel@shedaniel.me> * Add license to package-info.java Signed-off-by: shedaniel <daniel@shedaniel.me> * Remove line between the javadoc and the package line Signed-off-by: shedaniel <daniel@shedaniel.me> * Move the @NotNull annotation Signed-off-by: shedaniel <daniel@shedaniel.me>
9 lines
424 B
Groovy
9 lines
424 B
Groovy
archivesBaseName = "fabric-tool-attribute-api-v1"
|
|
version = getSubprojectVersion(project, "1.2.3")
|
|
|
|
dependencies {
|
|
compile project(path: ':fabric-api-base', configuration: 'dev')
|
|
compile project(path: ':fabric-tag-extensions-v0', configuration: 'dev')
|
|
testmodCompile project(path: ':fabric-object-builder-api-v1', configuration: 'dev')
|
|
testmodCompile project(path: ':fabric-lifecycle-events-v1', configuration: 'dev')
|
|
}
|