-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
105 lines (89 loc) · 2.67 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
plugins {
id 'com.gradle.plugin-publish' version '1.1.0'
id 'fabric-loom' version '0.12-SNAPSHOT'
}
version = '0.1.1'
group = 'io.github.thatrobin.docky'
archivesBaseName = 'Docky'
description = 'A plugin to generate documentation for apoli addons'
sourceCompatibility = JavaVersion.VERSION_18
targetCompatibility = JavaVersion.VERSION_18
repositories {
maven {
name = "JitPack"
url = "https://jitpack.io"
}
maven {
url "https://maven.shedaniel.me/"
}
maven {
url "https://maven.terraformersmc.com/"
}
maven {
name = "Ladysnake Mods"
url = 'https://ladysnake.jfrog.io/artifactory/mods'
}
maven {
url = 'https://maven.cafeteria.dev'
content {
includeGroup 'net.adriantodt.fabricmc'
}
}
maven {
url "https://maven.jamieswhiteshirt.com/libs-release"
content {
includeGroup "com.jamieswhiteshirt"
}
}
mavenCentral()
}
loom {
runs {
CreateDocs {
inherit client
name "Create Docs"
vmArg "-Dfabric-api.datagen"
vmArg "-Dfabric-api.datagen.output-dir=${file("src/main/generated")}"
vmArg "-Dfabric-api.datagen.modid=docky"
runDir "build/docky"
}
}
}
dependencies {
compileOnly gradleApi()
minecraft "com.mojang:minecraft:${project.minecraft_version}"
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
modImplementation "com.github.apace100:apoli:${project.apoli_version}"
modImplementation "dev.onyxstudios.cardinal-components-api:cardinal-components-base:${project.cca_version}"
modImplementation "dev.onyxstudios.cardinal-components-api:cardinal-components-entity:${project.cca_version}"
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
compileOnly group: 'org.jetbrains', name: 'annotations', version: '+'
}
gradlePlugin {
plugins {
docky {
id = 'io.github.thatrobin.docky'
implementationClass = 'io.github.thatrobin.docky.Docky'
displayName = 'Docky'
}
}
}
pluginBundle {
website = 'https://thatrobin.github.io'
vcsUrl = 'https://github.com/ThatRobin/Docky'
description = 'A plugin to generate documentation for apoli addons'
tags = ['minecraft', 'apoli']
}
publishing {
repositories {
maven {
name = 'localPluginRepository'
url = '../local-plugin-repository'
}
}
}
tasks.withType(JavaCompile).configureEach {
it.options.encoding = "UTF-8"
it.options.release.set(8)
}