This repository was archived by the owner on Jan 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathbuild.gradle
More file actions
52 lines (42 loc) · 1.39 KB
/
build.gradle
File metadata and controls
52 lines (42 loc) · 1.39 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
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'maven'
group = 'net.samagames'
version = '5.0.0'
archivesBaseName = 'Hub'
sourceCompatibility = 1.8
targetCompatibility = 1.8
compileJava.options.encoding = 'UTF-8'
repositories {
mavenCentral()
mavenLocal()
maven { url "http://maven.elmakers.com/repository/" }
maven {
url "http://maven.samagames.net/developpers/"
credentials {
username sguser
password sgpass
}
}
maven {
url "http://maven.samagames.net/network/"
credentials {
username sguser
password sgpass
}
}
}
dependencies {
compile group: 'net.samagames', name: 'SamaGamesAPI', version: '5.0.0', changing: true
compile group: 'net.samagames', name: 'PersistanceAPI', version: '1.1.0', changing: true
compile(group: 'org.spigotmc', name: 'spigot', version: '1.12-R0.1-SNAPSHOT', changing: true) {
transitive = false
}
compile group: 'de.slikey', name: 'EffectLib', version: '5.5-SNAPSHOT'
compile(group: 'LibsDisguises', name: 'LibsDisguises', version: '9.4.0', changing: true) {
transitive = false
}
compile group: 'net.techcable', name: 'SonarPet', version: '1.1.0-alpha1'
compile group: 'redis.clients', name: 'jedis', version: '2.9.0'
compile group: 'protocolsupport', name: 'ProtocolSupport', version: '4.25'
}