forked from Auxilor/EcoEnchants
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
123 lines (96 loc) · 2.52 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
plugins {
id 'java-library'
id 'maven-publish'
id 'java'
}
allprojects {
apply plugin: 'java'
repositories {
mavenCentral()
jcenter()
mavenLocal()
maven {
url 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/'
}
maven {
url 'https://repo.codemc.org/repository/maven-public'
}
maven {
url 'https://oss.sonatype.org/content/groups/public/'
}
maven {
url 'https://maven.enginehub.org/repo/'
}
maven {
url 'https://jitpack.io'
}
maven {
url 'https://ci.ender.zone/plugin/repository/project/'
}
maven {
url 'https://ci.ender.zone/plugin/repository/everything/'
}
maven {
url 'https://repo.md-5.net/content/repositories/snapshots/'
}
maven {
url 'https://repo.janmm14.de/repository/public/'
}
maven {
url 'https://repo.dmulloy2.net/nexus/repository/public/'
}
maven {
url 'https://papermc.io/repo/repository/maven-public/'
}
maven {
url 'https://repo.maven.apache.org/maven2/'
}
maven {
url 'https://repo.dustplanet.de/artifactory/ext-release-local/'
}
maven {
url 'https://maven.seyfahni.de/repository/snapshots/'
}
maven {
url 'https://libraries.minecraft.net/'
}
maven {
url 'https://repo.spongepowered.org/maven/'
}
maven {
url 'https://org.kitteh.pastegg'
}
maven {
url 'https://repo.mikeprimm.com/'
}
maven {
url 'https://maven.sk89q.com/repo/'
}
maven {
url 'https://github.com/factions-site/repo/raw/public/'
}
maven {
url 'https://repo.extendedclip.com/content/repositories/placeholderapi/'
}
}
tasks.withType(JavaCompile) {
options.deprecation = true
options.encoding = 'UTF-8'
}
compileJava.options.encoding = 'UTF-8'
compileJava.dependsOn clean
}
clean.doLast {
file("${rootDir}/bin").deleteDir()
}
group = 'com.willfp.ecoenchants'
archivesBaseName = project.name
version = project.version
java.sourceCompatibility = JavaVersion.VERSION_1_8
publishing {
publications {
maven(MavenPublication) {
from(components.java)
}
}
}