-
Notifications
You must be signed in to change notification settings - Fork 6
/
build.gradle
38 lines (32 loc) · 914 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
plugins {
id 'java-gradle-plugin'
id 'com.gradle.plugin-publish' version "1.2.0"
}
repositories {
mavenCentral()
gradlePluginPortal()
}
version = '1.5'
group = 'io.shcm.shsupercm.fabric'
dependencies {
compileOnly project('idea-integration')
}
jar {
from {
project('idea-integration').sourceSets.main.output
}
}
gradlePlugin {
website = 'https://github.com/SHsuperCM/Stonecutter'
vcsUrl = 'https://github.com/SHsuperCM/Stonecutter'
plugins {
stonecutter {
id = 'io.shcm.shsupercm.fabric.stonecutter'
implementationClass = 'io.shcm.shsupercm.fabric.stonecutter.StonecutterPlugin'
displayName = "Stonecutter"
description = 'Preprocessor/JCP inspired multi-version environment manager'
tags.set(['fabric', 'fabricmc'])
}
}
}
javadoc.options.addStringOption('Xdoclint:none', '-quiet')