-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
42 lines (36 loc) · 923 Bytes
/
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
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.johnrengelman:shadow:7.1.2"
}
}
subprojects {
apply plugin: 'java'
apply plugin: 'com.github.johnrengelman.shadow'
group 'team.dotspace.squidly'
version '1.0-SNAPSHOT'
compileJava.options.encoding = "UTF-8"
compileTestJava.options.encoding = "UTF-8"
ext {
jetbrains_annotations = "24.0.0"
discord_JDA = "5.0.0-beta.8"
jackson = "2.14.1"
arango = "6.21.0"
arango_velocypack = "3.0.1"
}
repositories {
mavenCentral()
//Discord JDA
maven {
name 'm2-dv8tion'
url 'https://m2.dv8tion.net/releases'
}
}
dependencies {
implementation "org.jetbrains:annotations:${jetbrains_annotations}"
}
}