diff options
author | CalMWolfs <94038482+CalMWolfs@users.noreply.github.com> | 2024-10-12 05:39:53 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-11 20:39:53 +0200 |
commit | d763b99107a0a9da4f0a9e59ebe51d4a2704bc0e (patch) | |
tree | 55b90b2538e68d8506d39fdeab4718d2f2086020 /buildSrc/build.gradle.kts | |
parent | d503510e9afd77f55c1c8d76aae298393de1c846 (diff) | |
download | skyhanni-d763b99107a0a9da4f0a9e59ebe51d4a2704bc0e.tar.gz skyhanni-d763b99107a0a9da4f0a9e59ebe51d4a2704bc0e.tar.bz2 skyhanni-d763b99107a0a9da4f0a9e59ebe51d4a2704bc0e.zip |
Backend: Add Changelog Verification (#2692)
Diffstat (limited to 'buildSrc/build.gradle.kts')
-rw-r--r-- | buildSrc/build.gradle.kts | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/buildSrc/build.gradle.kts b/buildSrc/build.gradle.kts new file mode 100644 index 000000000..505f438b9 --- /dev/null +++ b/buildSrc/build.gradle.kts @@ -0,0 +1,17 @@ +plugins { + `kotlin-dsl` +} + +repositories { + mavenCentral() + maven("https://jitpack.io") { + content { + includeGroupByRegex("com\\.github\\..*") + } + } +} + +dependencies { + implementation("org.jetbrains.kotlin:kotlin-stdlib") + implementation("com.github.SkyHanniStudios:SkyHanniChangelogBuilder:1.0.1") +} |