/* * This build file was auto generated by running the Gradle 'init' task * by 'Markus' at '07.02.17 23:12' with Gradle 3.1 * * This generated file contains a sample Java project to get you started. * For more details take a look at the Java Quickstart chapter in the Gradle * user guide available at https://docs.gradle.org/3.1/userguide/tutorial_java_projects.html */ // Apply the java plugin to add support for Java apply plugin: 'java' // In this section you declare where to find the dependencies of your project repositories { // Use 'jcenter' for resolving your dependencies. // You can declare any Maven/Ivy/file repository here. jcenter() maven { url "https://hub.spigotmc.org/nexus/content/groups/public/" } maven { url "http://repo.ess3.net/content/groups/essentials" } flatDir { dir 'lib' } } // In this section you declare the dependencies for your production and test code dependencies { compile group: 'org.spigotmc', name: 'spigot-api', version: '1.11.2-R0.1-SNAPSHOT' compile group: 'net.ess3', name: 'Essentials', version: 'Pre2.13.1.7' } jar { destinationDir = file('artifacts/jar') }