-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
43 lines (37 loc) · 1.14 KB
/
Copy pathbuild.gradle.kts
File metadata and controls
43 lines (37 loc) · 1.14 KB
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
plugins {
`kotlin-dsl`
id("com.gradle.plugin-publish") version "2.0.0"
}
group = "fr.smolder.hytale"
version = "0.1.0"
repositories {
mavenCentral()
}
dependencies {
implementation(gradleApi())
}
gradlePlugin {
website.set("https://github.com/GhostRider584/hytale-gradle-plugin")
vcsUrl.set("https://github.com/GhostRider584/hytale-gradle-plugin.git")
plugins {
register("hytaleDev") {
id = "fr.smolder.hytale.dev"
displayName = "Hytale Development Plugin"
description = "A Gradle plugin to streamline Hytale plugin development."
tags.set(listOf("hytale", "hytale-plugin", "hytale-mod", "hytale-server", "gradle-plugin", "development"))
implementationClass = "fr.smolder.hytale.gradle.HytaleDevPlugin"
}
}
}
publishing {
repositories {
maven {
name = "Smolder"
url = uri("https://repo.smolder.fr/public/")
credentials {
username = project.findProperty("smolderUsername") as String?
password = project.findProperty("smolderPassword") as String?
}
}
}
}