-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
54 lines (44 loc) · 1.14 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 {
mavenCentral()
maven {
url = "https://maven.minecraftforge.net/"
}
maven {url = "https://oss.sonatype.org/content/repositories/snapshots"}
}
dependencies {
classpath group: "net.minecraftforge.gradle", name: "ForgeGradle", version: "5.1.+", changing: true
}
}
plugins {
id 'java'
}
apply plugin: "net.minecraftforge.gradle"
group 'br.com.finalcraft'
version '2.0.0'
sourceCompatibility = 1.8
targetCompatibility = 1.8
compileJava.options.encoding = 'UTF-8'
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
repositories {
flatDir {
dirs 'libs'
}
mavenCentral()
maven {
name = 'spigotmc-repo'
url = 'https://hub.spigotmc.org/nexus/content/groups/public/'
}
maven { url 'https://jitpack.io' }
}
minecraft {
mappings channel: 'official', version: '1.16.5'
}
dependencies {
minecraft 'net.minecraftforge:forge:1.16.5-36.2.34'
compileOnly "com.github.MilkBowl:VaultAPI:1.7"
compileOnly name: "Pixelmon-1.16.5-9.1.2-server"
compileOnly 'org.bukkit:bukkit:1.12.2-R0.1-SNAPSHOT'
}