-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
54 lines (47 loc) · 1.4 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
buildscript {
repositories {
maven {
url = 'https://plugins.gradle.org/m2'
}
dependencies {
classpath 'io.franzbecker:gradle-lombok:1.14'
classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.2'
}
}
}
subprojects {
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'io.franzbecker.gradle-lombok'
apply plugin: 'com.github.johnrengelman.shadow'
group 'net.minepos'
version '1.0.0'
sourceCompatibility = 1.8
repositories {
mavenCentral()
maven {
url = 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/'
}
maven {
url = 'https://oss.sonatype.org/content/repositories/snapshots'
}
maven {
url = 'https://repo.piggypiglet.me/repository/maven-releases/'
}
}
dependencies {
compileOnly 'org.reflections:reflections:+'
compileOnly 'com.google.inject:guice:+'
compileOnly 'org.apache.commons:commons-lang3:+'
compileOnly 'com.google.code.gson:gson:+'
compileOnly 'commons-io:commons-io:+'
// compileOnly 'org.nanohttpd:nanohttpd:2.3.1'
compileOnly 'org.apache.httpcomponents:httpclient:+'
compileOnly 'me.piggypiglet:TimeAPI:+'
}
lombok {
version = '1.18.4'
sha256 = ""
}
compileJava.options.encoding = 'UTF-8'
}