-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added ByteItems support #82
Added ByteItems support #82
Conversation
@@ -61,7 +63,10 @@ | |||
* @author ustc_zzzz | |||
*/ | |||
@Plugin(name = "VirtualChest", id = VirtualChestPlugin.PLUGIN_ID, | |||
dependencies = {@Dependency(id = "spongeapi"), @Dependency(id = "placeholderapi", version = "[4.0,)")}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do not remove the dependency of SpongeAPI. A new dependency with an API version will be added when the plugin is built and mcmod.info
is generated if the dependency is not explicitly declared. VC is supposed to support both API 5 and API 7 and the version number of SpongeAPI is not expected in the dependency list.
} | ||
dependencies { | ||
classpath 'net.minecrell:VanillaGradle:2.0.3_1' | ||
classpath 'com.github.jengelman.gradle.plugins:shadow:1.2.4' | ||
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7' | ||
classpath 'net.minecraftforge.gradle:ForgeGradle:2.3-SNAPSHOT' | ||
classpath 'org.javalite:activejdbc-gradle-plugin:1.4.13-SNAPSHOT' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just change the version number to 2.2 instead of removing it simply since VC needs active jdbc instrumentation. Please refer to this.
Done. |
As requested in #81 this adds support for ByteItems. To get this project even to compile, I had to apply the same changes as done in #72.