-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
39 lines (33 loc) · 950 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
plugins {
id 'java-gradle-plugin'
id 'maven-publish'
id 'com.gradle.plugin-publish' version '1.0.0'
}
group 'fr.flowarg'
version '1.0.2'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.jetbrains:annotations:23.0.0'
}
pluginBundle {
website = 'http://nmsremaphelper.flowarg.fr'
vcsUrl = 'https://github.com/FlowArg/NMSRemapHelper'
tags = ['nms', 'spigot', 'mappings', 'export']
}
gradlePlugin {
plugins {
nmsremaphelper {
id = 'fr.flowarg.nmsremaphelper'
displayName = 'NMS Remap Helper'
description = 'This plugin provide some tasks to help you to export a plugin with correct mappings according to your spigot server version if you develop with a mojang mapped version of the NMS.'
implementationClass = 'fr.flowarg.nmsremaphelper.NMSRemapHelperPlugin'
}
}
}
publishing {
repositories {
mavenLocal()
}
}