This repository has been archived by the owner on Jan 11, 2022. It is now read-only.
forked from Realizedd/Duels
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
60 lines (53 loc) · 1.4 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
buildscript {
repositories {
mavenLocal()
mavenCentral()
}
}
plugins {
id 'java'
id 'idea'
id 'maven-publish'
id "com.github.johnrengelman.shadow" version('7.0.0')
}
allprojects {
group 'me.realized'
version '3.4.3'
}
subprojects {
apply plugin: 'java'
apply plugin: 'com.github.johnrengelman.shadow'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenLocal()
mavenCentral()
maven { url = 'https://repo.codemc.io/repository/nms/' }
maven { url = 'https://repo.codemc.io/repository/maven-public/' }
maven { url = 'https://repo.dmulloy2.net/nexus/repository/public/' }
maven { url = 'https://repo.extendedclip.com/content/repositories/placeholderapi/' }
maven { url = 'https://jitpack.io' }
maven { url = 'https://repo.mvdw-software.com/content/groups/public/' }
maven { url = 'https://maven.sk89q.com/repo/' }
maven { url = 'https://repo.inventivetalent.org/content/groups/public/' }
flatDir {
dirs "$rootDir/libs/"
}
}
}
publishing {
publications {
maven(MavenPublication) {
groupId = project.group
artifactId = 'Duels'
version = project.version
from components.java
}
}
repositories {
mavenLocal()
}
}
build {
dependsOn publish
}