update build.gradle

This commit is contained in:
Chris 2020-12-24 04:49:05 +01:00
parent 1a104c903f
commit 29f2760136
1 changed files with 10 additions and 38 deletions

View File

@ -1,47 +1,19 @@
/* plugins {
* This build file was auto generated by running the Gradle 'init' task id "groovy"
* by 'Markus' at '07.02.17 23:12' with Gradle 3.1 id "java-gradle-plugin"
* id "maven-publish"
* This generated file contains a sample Java project to get you started. id "com.gradle.plugin-publish" version "0.11.0"
* For more details take a look at the Java Quickstart chapter in the Gradle id "com.github.ben-manes.versions" version "0.28.0"
* user guide available at https://docs.gradle.org/3.1/userguide/tutorial_java_projects.html }
*/
// Apply the java plugin to add support for Java sourceCompatibility = targetCompatibility = JavaVersion.VERSION_1_8
apply plugin: 'java'
// In this section you declare where to find the dependencies of your project
repositories { repositories {
// Use 'jcenter' for resolving your dependencies.
// You can declare any Maven/Ivy/file repository here.
jcenter()
maven { maven {
url "https://hub.spigotmc.org/nexus/content/groups/public/" url 'https://papermc.io/repo/repository/maven-public/'
}
maven {
url "http://repo.ess3.net/content/groups/essentials"
}
maven {
url = "https://oss.sonatype.org/content/repositories/snapshots/"
}
maven {
url = "http://nexus.hc.to/content/repositories/pub_releases"
}
maven {
url = "http://maven.elmakers.com/repository/"
}
flatDir {
dir 'lib'
} }
} }
// In this section you declare the dependencies for your production and test code
dependencies { dependencies {
compile group: 'org.spigotmc', name: 'spigot-api', version: '1.11.2-R0.1-SNAPSHOT' compileOnly 'com.destroystokyo.paper:paper-api:1.16.4-R0.1-SNAPSHOT'
compile group: 'net.ess3', name: 'Essentials', version: 'Pre2.13.1.7'
compile name: 'sqlite-jdbc-3.16.1'
} }
jar {
destinationDir = file('artifacts/jar')
}