-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
41 lines (35 loc) · 873 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
plugins {
id "com.github.johnrengelman.shadow" version "7.0.0"
}
apply plugin: 'java-library'
group 'fr.flowarg'
version '1.0.3'
repositories {
mavenCentral()
jcenter()
maven {
url "https://jitpack.io/"
name = "Jitpack"
}
maven {
url "https://maven.minecraftforge.net/"
name = "MinecraftForge"
}
maven {
name = "Mirrors"
url 'https://github.com/Col-E/jdk-tools-mirror/raw/master/repository/'
}
}
shadowJar {
configurations = [project.configurations.shadow]
classifier 'with-dependencies'
}
task sourcesJar(type: Jar, dependsOn: classes) {
classifier 'sources'
from sourceSets.main.allSource
}
dependencies {
implementation 'com.github.Col-E:recaf:2.20.1'
implementation 'club.minnced:java-discord-rpc:2.0.2'
shadow 'club.minnced:java-discord-rpc:2.0.2'
}