-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
37 lines (30 loc) · 773 Bytes
/
build.gradle
File metadata and controls
37 lines (30 loc) · 773 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
28
29
30
31
32
33
34
35
36
37
plugins {
id 'com.github.johnrengelman.shadow' version '2.0.4'
}
apply plugin: 'java'
apply plugin: 'maven'
group = 'net.moddedminecraft'
version = '2.0.0-API-8'
description = """MMCLogger"""
sourceCompatibility = 1.8
targetCompatibility = 1.8
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
repositories {
mavenCentral()
maven {
name = "Sponge"
url = "https://repo.spongepowered.org/repository/maven-public"
}
maven {
name = "JitPack"
url 'https://jitpack.io'
}
}
}
dependencies {
compile group: 'org.json', name: 'json', version: '20231013'
compileOnly(files("libs/LocaleAPI-2.6.0-S8.0.0-RELEASE.jar"))
compileOnly group: 'org.spongepowered', name: 'spongeapi', version:'8.2.0'
}