-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
65 lines (54 loc) · 1.4 KB
/
build.gradle
File metadata and controls
65 lines (54 loc) · 1.4 KB
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
/*
* This file was generated by the Gradle 'init' task.
*/
import org.apache.tools.ant.filters.ReplaceTokens
plugins {
id 'java'
id 'maven-publish'
id 'com.github.johnrengelman.shadow' version '7.0.0'
}
repositories {
mavenLocal()
maven {
url = uri('https://repo.destroystokyo.com/repository/maven-public/')
}
maven {
url = uri('https://hub.spigotmc.org/nexus/content/repositories/snapshots/')
}
maven {
url = uri('https://jitpack.io')
}
maven {
url = uri('https://repo1.maven.org/')
}
maven {
url = uri('https://repo.maven.apache.org/maven2/')
}
maven {
url 'https://repo.maven.apache.org/maven2'
name 'Maven Central'
}
}
dependencies {
implementation 'org.xerial:sqlite-jdbc:3.36.0.2'
implementation 'io.papermc:paperlib:1.0.6'
compileOnly 'com.destroystokyo.paper:paper-api:1.16.5-R0.1-SNAPSHOT'
compileOnly 'com.github.Slimefun:Slimefun4:RC-28'
}
group = 'space.kiichan'
version = '1.2.1-RC28 modified by Kylepoops'
description = 'GeneticChickengineering'
java.sourceCompatibility = JavaVersion.VERSION_1_8
publishing {
publications {
maven(MavenPublication) {
from(components.java)
}
}
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
processResources{
filter ReplaceTokens, tokens:['version': project.version.toString()]
}