-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbuild.gradle
More file actions
45 lines (38 loc) · 887 Bytes
/
Copy pathbuild.gradle
File metadata and controls
45 lines (38 loc) · 887 Bytes
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
/*
* This file was generated by the Gradle 'init' task.
*/
plugins {
id 'java'
id 'maven-publish'
}
repositories {
mavenLocal()
maven {
url = 'https://repo.md-5.net/content/groups/public/'
}
maven {
url = 'https://repo.maven.apache.org/maven2'
}
}
dependencies {
implementation 'com.google.guava:guava:18.0'
implementation 'org.apache.commons:commons-pool2:2.0'
implementation 'commons-io:commons-io:2.6'
implementation 'com.discord4j:discord4j-core:3.0.8'
compileOnly 'com.destroystokyo.paper:paper:1.15.2'
}
group = 'net.zyuiop'
version = '1.0-SNAPSHOT'
sourceCompatibility = '10'
publishing {
publications {
maven(MavenPublication) {
from(components.java)
}
}
}
jar {
from {
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
}
}