mirror of
https://github.com/GayPizzaSpecifications/foundation.git
synced 2025-08-03 13:31:32 +00:00
29 lines
755 B
Plaintext
29 lines
755 B
Plaintext
plugins {
|
|
`kotlin-dsl`
|
|
kotlin("plugin.serialization") version "1.5.31"
|
|
}
|
|
|
|
repositories {
|
|
gradlePluginPortal()
|
|
}
|
|
|
|
dependencies {
|
|
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.10")
|
|
implementation("org.jetbrains.kotlin:kotlin-serialization:1.6.10")
|
|
implementation("gradle.plugin.com.github.johnrengelman:shadow:7.1.1")
|
|
implementation("com.google.code.gson:gson:2.8.9")
|
|
implementation("org.bouncycastle:bcprov-jdk15on:1.70")
|
|
}
|
|
|
|
java.sourceCompatibility = JavaVersion.VERSION_1_8
|
|
java.targetCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
gradlePlugin {
|
|
plugins {
|
|
create("foundation") {
|
|
id = "cloud.kubelet.foundation.gradle"
|
|
implementationClass = "cloud.kubelet.foundation.gradle.FoundationGradlePlugin"
|
|
}
|
|
}
|
|
}
|