-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
44 lines (36 loc) · 1.25 KB
/
build.gradle
File metadata and controls
44 lines (36 loc) · 1.25 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
plugins {
id 'java'
id 'org.jetbrains.kotlin.jvm' version '1.6.10'
id 'org.jetbrains.kotlin.kapt' version '1.6.10'
id "com.github.johnrengelman.shadow" version "7.1.2"
}
allprojects {
group 'ltd.matrixstudios'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
mavenLocal()
maven { url 'https://jitpack.io' }
maven { url 'https://repo.enonic.com/public/' }
maven { url "https://oss.sonatype.org/content/groups/public/"}
maven { url = "https://repo.aikar.co/content/groups/aikar/" }
maven {
url 'https://papermc.io/repo/repository/maven-public/'
}
}
}
subprojects {
apply plugin: "java"
apply plugin: "org.jetbrains.kotlin.jvm"
apply plugin: "org.jetbrains.kotlin.kapt"
apply plugin: "com.github.johnrengelman.shadow"
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib"
compileOnly 'org.projectlombok:lombok:1.18.22'
kapt 'org.projectlombok:lombok:1.18.22'
implementation 'com.google.code.gson:gson:2.9.0'
implementation 'org.mongodb:mongo-java-driver:3.12.10'
implementation 'redis.clients:jedis:4.2.3'
implementation 'com.github.docker-java:docker-java:3.2.8'
}
}