-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
62 lines (55 loc) · 1.54 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 'java'
id 'maven-publish'
}
group = 'me.katsumag'
version = '2.0'
java {
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_1_8
}
repositories {
mavenCentral()
mavenLocal()
maven {
name = 'spigotmc-repo'
url = 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/'
}
maven {
name = 'sonatype'
url = 'https://oss.sonatype.org/content/groups/public/'
}
}
dependencies {
implementation 'org.jetbrains:annotations:19.0.0'
compileOnly 'org.spigotmc:spigot:1.15.2-R0.1-SNAPSHOT'
testCompileOnly 'org.spigotmc:spigot:1.15.2-R0.1-SNAPSHOT'
}
processResources {
from(sourceSets.main.resources.srcDirs) {
include('plugin.yml')
expand('name': name,
'version': version,
'main': 'me.katsumag.itemactionslib.ItemActionsLib')
}
}
publishing {
publications {
mavenJava(MavenPublication) {
groupId = 'me.katsumag'
artifactId = 'item-actions-lib'
version = '2.0'
from components.java
}
}
repositories {
maven {
def releasesRepoUrl = "https://repo.katsumag.me/repository/maven-releases"
def snapshotsRepoUrl = "https://repo.katsumag.me/repository/maven-snapshots"
url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl
credentials {
username System.env["MAVEN_USER"]
password System.env["MAVEN_PASSWORD"]
}
}
}
}