forked from dig/ender-vaults
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
43 lines (34 loc) · 1 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
/*
* This file was generated by the Gradle 'init' task.
*
* This is a general purpose Gradle build.
* Learn how to create Gradle builds at https://guides.gradle.org/creating-new-gradle-builds
*/
subprojects {
apply plugin: 'java'
group 'com.github.dig.endervaults'
version '1.0-SNAPSHOT'
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
task copyToBuildsDir(type: Copy) {
from 'build/libs'
into '../bin'
}
copyToBuildsDir.dependsOn(jar)
build.finalizedBy(copyToBuildsDir)
project.ext.version = '1.0.13'
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
annotationProcessor 'org.projectlombok:lombok:1.18.8'
compileOnly 'org.projectlombok:lombok:1.18.8'
testImplementation 'com.google.code.findbugs:jsr305:3.0.2'
compile 'org.javatuples:javatuples:1.2'
}
compileJava.options.encoding = 'UTF-8'
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
}