-
Notifications
You must be signed in to change notification settings - Fork 29
/
build.gradle
45 lines (36 loc) · 1.16 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
/*
* 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.1.1'
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
compileOnly 'org.projectlombok:lombok:1.18.20'
annotationProcessor 'org.projectlombok:lombok:1.18.20'
testCompileOnly 'org.projectlombok:lombok:1.18.20'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.20'
testImplementation 'com.google.code.findbugs:jsr305:3.0.2'
implementation group: 'org.javatuples', name: 'javatuples', version: '1.2'
}
compileJava.options.encoding = 'UTF-8'
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
}