2019-06-06 13:15:50 +00:00
|
|
|
/*
|
|
|
|
* This file was generated by the Gradle 'init' task.
|
|
|
|
*
|
|
|
|
* 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 Manual available at https://docs.gradle.org/5.2.1/userguide/tutorial_java_projects.html
|
|
|
|
*/
|
|
|
|
|
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
id 'eclipse'
|
|
|
|
id 'com.github.johnrengelman.shadow' version '2.0.4'
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
// Use jcenter for resolving your dependencies.
|
|
|
|
// You can declare any Maven/Ivy/file repository here.
|
|
|
|
jcenter()
|
|
|
|
maven { url 'https://jitpack.io' }
|
|
|
|
maven {
|
|
|
|
url = 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/'
|
|
|
|
content {
|
|
|
|
includeGroup 'org.bukkit'
|
|
|
|
includeGroup 'org.spigotmc'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
maven { url = 'https://oss.sonatype.org/content/repositories/snapshots' }
|
|
|
|
}
|
|
|
|
|
2019-07-10 12:58:47 +00:00
|
|
|
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
|
|
|
|
|
2019-06-06 13:15:50 +00:00
|
|
|
dependencies {
|
|
|
|
implementation 'com.github.nitu2003:TConfig:1.0'
|
|
|
|
implementation 'com.github.nitu2003:SimpleDataStorage:1.2'
|
2019-07-10 06:48:50 +00:00
|
|
|
implementation 'com.github.nitu2003:T18n:1.3'
|
2019-06-06 13:15:50 +00:00
|
|
|
implementation 'com.github.hydevelop:PicqBotX:4.10.1.928'
|
|
|
|
implementation 'cn.hutool:hutool-all:4.5.10'
|
|
|
|
implementation 'com.github.hydevelop:HyCommonUtils:1.3.5.130'
|
|
|
|
compileOnly 'org.spigotmc:spigot-api:1.14.2-R0.1-SNAPSHOT'
|
|
|
|
}
|
|
|
|
|
|
|
|
shadowJar {
|
2019-07-10 12:58:47 +00:00
|
|
|
classifier = null
|
|
|
|
from("./") {
|
|
|
|
include 'build.gradle'
|
2019-06-06 13:15:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|