diff options
author | Luck <git@lucko.me> | 2018-06-06 15:39:16 +0100 |
---|---|---|
committer | Luck <git@lucko.me> | 2018-06-06 15:39:16 +0100 |
commit | 7d6808cbcfbb0f61f93e536d36968eeda5bd302c (patch) | |
tree | 3271db1ffa6e4d6c1fa5ea4ccc1335b1ac746f46 /spark-bukkit/build.gradle | |
parent | 38f0c12483e6eda79ca36dc829ef678a736d2cef (diff) | |
download | spark-7d6808cbcfbb0f61f93e536d36968eeda5bd302c.tar.gz spark-7d6808cbcfbb0f61f93e536d36968eeda5bd302c.tar.bz2 spark-7d6808cbcfbb0f61f93e536d36968eeda5bd302c.zip |
Convert to Gradle
Diffstat (limited to 'spark-bukkit/build.gradle')
-rw-r--r-- | spark-bukkit/build.gradle | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/spark-bukkit/build.gradle b/spark-bukkit/build.gradle new file mode 100644 index 0000000..e2f4da0 --- /dev/null +++ b/spark-bukkit/build.gradle @@ -0,0 +1,11 @@ +dependencies { + compile project(':spark-common') + compileOnly 'org.spigotmc:spigot-api:1.12.2-R0.1-SNAPSHOT' +} + +processResources { + from(sourceSets.main.resources.srcDirs) { + expand 'pluginVersion': project.pluginVersion + include 'plugin.yml' + } +}
\ No newline at end of file |