-
-
Notifications
You must be signed in to change notification settings - Fork 211
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1612 from robstoll/chore/activate-publishing-only…
…-if-ENV-PUB-given apply publishing plugins, esp. tutteli-dokka only if env PUB is true
- Loading branch information
Showing
6 changed files
with
76 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 5 additions & 3 deletions
8
...ld-logic/publishing/src/main/kotlin/build-logic.published-kotlin-multiplatform.gradle.kts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
plugins { | ||
id("build-logic.kotlin-multiplatform") | ||
id("ch.tutteli.gradle.plugins.publish") | ||
id("ch.tutteli.gradle.plugins.publish") apply isPublishing() | ||
id("build-logic.publish-to-tmp-maven-repo") | ||
id("build-logic.dokka") | ||
} | ||
|
||
tutteliPublish { | ||
resetLicenses("EUPL-1.2") | ||
ifIsPublishing { | ||
tutteliPublish { | ||
resetLicenses("EUPL-1.2") | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters