-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
27 lines (23 loc) · 797 Bytes
/
build.gradle
File metadata and controls
27 lines (23 loc) · 797 Bytes
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
plugins {
id 'java'
id 'idea'
}
group 'fr.bakaaless'
version '0.0.1-ALPHA'
repositories {
jcenter()
mavenCentral()
mavenLocal()
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
maven { url "https://hub.spigotmc.org/nexus/content/repositories/snapshots" }
maven { url 'https://jitpack.io' }
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compile files(projectDir.getAbsolutePath() + '/libs/NoteBlockAPI.jar')
compileOnly 'org.spigotmc:spigot-api:1.15.2-R0.1-SNAPSHOT'
compileOnly 'org.spigotmc:spigot:1.15.2-R0.1-SNAPSHOT'
compileOnly 'org.projectlombok:lombok:1.18.10'
annotationProcessor 'org.projectlombok:lombok:1.18.10'
}
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'