Skip to content

Commit

Permalink
updated maven publish scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
Morfly committed Jul 2, 2021
1 parent f094782 commit c1b178e
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 1 deletion.
2 changes: 2 additions & 0 deletions airin-starlark-libgen/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
plugins {
kotlin("jvm")
id("org.jetbrains.dokka")
`maven-publish-config`
}

dependencies {
Expand Down
2 changes: 2 additions & 0 deletions airin-starlark-stdlib/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
plugins {
kotlin("jvm")
id("com.google.devtools.ksp")
id("org.jetbrains.dokka")
`maven-publish-config`
}

kotlin {
Expand Down
10 changes: 10 additions & 0 deletions buildSrc/src/main/kotlin/AirinPublications.kt
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,16 @@ val airinPublications = mapOf<GradleProjectName, Publication>(
description = "A declarative, type-safe Starlark template engine that allows writing Starlark code templates in Kotlin."
),

"airin-starlark-stdlib" to Publication(
name = "Airin Starlark Standard Library",
description = "A Kotlin DSL that represent common Starlark rules and functions that include Java, Android, Kotlin and more."
),

"airin-starlark-libgen" to Publication(
name = "Airin Starlark Library Generator",
description = "A symbol processor for generating Kotlin DSL for custom Starlark rules and functions."
),

"airin-migration-core" to Publication(
name = "Airin Migration Core",
description = "Core APIs for migration to Bazel."
Expand Down
6 changes: 5 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,8 @@ kotlin.code.style=official
# gradle plugin versions
kotlinVersion=1.5.20
dokkaVersion=1.4.32
kspVersion=1.5.20-1.0.0-beta04
kspVersion=1.5.20-1.0.0-beta04

# https://github.com/Kotlin/dokka/issues/1405
#org.gradle.daemon=false
#org.gradle.jvmargs=-Xmx2048m

0 comments on commit c1b178e

Please sign in to comment.