-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
44 lines (36 loc) · 986 Bytes
/
build.gradle.kts
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
plugins {
id("com.github.hierynomus.license") version "0.16.1"
id("com.gradle.plugin-publish") version "1.1.0"
kotlin("jvm") version "1.9.10"
`java-gradle-plugin`
`kotlin-dsl`
}
repositories {
mavenCentral()
}
dependencies {
implementation(gradleTestKit())
implementation(kotlin("stdlib"))
}
kotlin {
explicitApi()
}
license {
header = rootProject.file("LICENSE")
encoding = "UTF-8"
useDefaultMappings = true
include("**/*.kt")
}
gradlePlugin {
website.set("https://github.com/TriumphTeam/cataloger")
vcsUrl.set("https://github.com/TriumphTeam/cataloger.git")
plugins {
create("cataloger") {
id = "dev.triumphteam.cataloger"
displayName = "Cataloger"
description = "Join and validate version catalogs before publishing them."
tags.set(listOf("version-catalog"))
implementationClass = "dev.triumphteam.cataloger.CatalogerPlugin"
}
}
}