-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
62 lines (53 loc) · 1.62 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
61
62
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.4.20-M1'
id 'maven-publish'
id "org.hibernate.build.maven-repo-auth" version "3.0.4"
id "ru.endlesscode.bukkitgradle" version "0.8.2"
id 'com.github.johnrengelman.shadow' version '2.0.4'
}
group 'com.github.darkvanityoflight'
version '1.0-SNAPSHOT'
description 'Some essentials that work together with the Recrafted Plugin collection'
repositories {
maven { url 'https://dl.bintray.com/kotlin/kotlin-eap' }
mavenCentral()
maven {
name = "DarkMods"
url 'https://repo.repsy.io/mvn/darkvanityoflight/darkmods'
}
spigot()
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib"
testCompile group: 'junit', name: 'junit', version: '4.12'
}
dependencies {
compileOnly spigotApi()
compileOnly 'com.github.darkvanityoflight:RecraftedCore:2.+'
compileOnly 'com.github.darkvanityoflight:ChatPlugin:1.+'
}
bukkit {
meta {
name = "RecraftedEssentials"
description = 'Some essentials that work together with the Recrafted plugin collection'
main = "com.github.darkvanityoflight.recraftedessentials.RecraftedEssentials"
version = this.version
authors = ["DarkVanityOfLight"]
}
}
publishing {
publications {
DarkMod(MavenPublication) {
groupId = 'com.github.darkvanityoflight'
artifactId = rootProject.name
version = this.version
from components.java
}
}
repositories {
maven {
name = 'DarkMods'
url 'https://repo.repsy.io/mvn/darkvanityoflight/darkmods'
}
}
}