-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
71 lines (54 loc) · 1.46 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
plugins {
id 'java'
id 'application'
id 'com.github.johnrengelman.shadow' version '8.1.1'
id 'java-gradle-plugin'
}
group = 'net.fedustria'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
testImplementation platform('org.junit:junit-bom:5.10.0')
testImplementation 'org.junit.jupiter:junit-jupiter'
implementation project(':net.fedustria.northcore.bootstrap:bungeecord')
implementation project(':net.fedustria.northcore.bootstrap:bukkit')
}
application {
mainClass = 'net.fedustria.Main'
}
allprojects {
group = 'net.fedustria'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
jcenter()
maven {
url = uri('https://jitpack.io')
}
maven {
url = uri 'https://oss.sonatype.org/content/repositories/snapshots'
}
maven {
url = uri 'https://repo.papermc.io/repository/maven-public/'
}
}
buildscript {
repositories {
mavenLocal()
}
}
compileJava.options.encoding = 'UTF-8'
}
subprojects {
apply plugin: 'java'
apply plugin: 'application'
dependencies {
testImplementation platform('org.junit:junit-bom:5.10.0')
testImplementation 'org.junit.jupiter:junit-jupiter'
compileOnly 'org.projectlombok:lombok:1.18.30'
annotationProcessor 'org.projectlombok:lombok:1.18.30'
}
compileJava.options.encoding = 'UTF-8'
}