-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathbuild.gradle
61 lines (55 loc) · 1.12 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
plugins {
id 'java-library'
id 'com.github.johnrengelman.shadow' version '7.0.0'
id 'maven-publish'
}
targetCompatibility = 1.8
sourceCompatibility = 1.8
repositories {
mavenCentral()
maven { url = 'https://oss.sonatype.org/content/repositories/snapshots' }
maven { url = 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/' }
maven { url = 'https://redempt.dev' }
mavenLocal()
}
dependencies {
compileOnly 'org.spigotmc:spigot-api:1.18.1-R0.1-SNAPSHOT'
api 'com.github.Redempt:RedCommands:1.5.7'
}
sourceSets {
main {
java {
srcDir 'src'
}
resources {
srcDir 'res'
}
}
}
jar.configure {
actions.clear()
dependsOn shadowJar
}
task javadocJar(type: Jar) {
from javadoc
archiveClassifier.set('javadoc')
}
task sourcesJar(type: Jar) {
from sourceSets.main.allJava
archiveClassifier.set('sources')
}
shadowJar.configure {
archiveClassifier.set('')
}
publishing {
publications {
maven(MavenPublication) {
groupId = 'com.github.Redempt'
artifactId = rootProject.name
version = System.env.BUILD_VERSION ?: "1.0"
artifact javadocJar
artifact sourcesJar
from components.java
}
}
}