Skip to content

Commit 1188344

Browse files
renovate-botJavierSegoviaCordoba
authored andcommitted
Update dependency com.javiersc.gradle-plugins:all-plugins to v0.1.0-rc.39
| datasource | package | from | to | | ---------- | --------------------------------------- | ----------- | ----------- | | maven | com.javiersc.gradle-plugins:all-plugins | 0.1.0-rc.24 | 0.1.0-rc.39 |
1 parent 557260f commit 1188344

File tree

15 files changed

+1946
-60
lines changed

15 files changed

+1946
-60
lines changed

.github/workflows/build-kotlin-dispatcher.yaml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,21 @@ on:
77
description: 'Gradle args for `build` step'
88
default: ''
99
required: false
10+
publish-all-docs:
11+
description: 'Publish all docs instead of only API docs and reports'
12+
required: false
13+
default: false
14+
type: boolean
1015

1116
jobs:
1217
build:
1318
uses: JavierSegoviaCordoba/reusable-workflows/.github/workflows/build-kotlin.yaml@main
1419
with:
1520
gradle-args: '${{ github.event.inputs.gradle-args }}'
1621
allow-github-actor-bots: false
17-
publish-snapshot: true
18-
publish-docs: true
22+
publish-all-docs: '${{ github.event.inputs.publish-all-docs }}'
1923
secrets:
2024
OSS_USER: '${{ secrets.OSS_USER }}'
2125
OSS_TOKEN: '${{ secrets.OSS_TOKEN }}'
2226
OSS_STAGING_PROFILE_ID: '${{ secrets.OSS_STAGING_PROFILE_ID }}'
27+
SONAR_TOKEN: '${{ secrets.SONAR_TOKEN }}'

.github/workflows/build-kotlin.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,8 @@ jobs:
1818
uses: JavierSegoviaCordoba/reusable-workflows/.github/workflows/build-kotlin.yaml@main
1919
with:
2020
allow-github-actor-bots: false
21-
publish-snapshot: true
22-
publish-docs: true
2321
secrets:
2422
OSS_USER: '${{ secrets.OSS_USER }}'
2523
OSS_TOKEN: '${{ secrets.OSS_TOKEN }}'
2624
OSS_STAGING_PROFILE_ID: '${{ secrets.OSS_STAGING_PROFILE_ID }}'
25+
SONAR_TOKEN: '${{ secrets.SONAR_TOKEN }}'

.github/workflows/publish-kotlin.yaml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,7 @@ on:
88
jobs:
99
publish:
1010
uses: JavierSegoviaCordoba/reusable-workflows/.github/workflows/publish-kotlin.yaml@main
11-
with:
12-
publish-maven-central: true
13-
publish-gradle-plugin-portal: false
14-
publish-jetbrains-marketplace: false
15-
publish-docs: true
16-
publish-github-release: true
1711
secrets:
18-
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
1912
OSS_USER: '${{ secrets.OSS_USER }}'
2013
OSS_TOKEN: '${{ secrets.OSS_TOKEN }}'
2114
OSS_STAGING_PROFILE_ID: '${{ secrets.OSS_STAGING_PROFILE_ID }}'
@@ -29,3 +22,4 @@ jobs:
2922
JETBRAINS_MARKETPLACE_KEY: '${{ secrets.JETBRAINS_MARKETPLACE_KEY }}'
3023
JETBRAINS_MARKETPLACE_KEY_PASSPHRASE: '${{ secrets.JETBRAINS_MARKETPLACE_KEY_PASSPHRASE }}'
3124
JETBRAINS_MARKETPLACE_TOKEN: '${{ secrets.JETBRAINS_MARKETPLACE_TOKEN }}'
25+
SONAR_TOKEN: '${{ secrets.SONAR_TOKEN }}'

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414

1515
### Updated
1616

17+
- `com.javiersc.gradle-plugins:all-plugins -> 0.1.0-rc.39`
1718
- `org.jetbrains.kotlinx:kotlinx-coroutines-core -> 1.6.0`
1819
- `gradle -> 7.3.3`
1920
- `io.kotest:kotest-assertions-core -> 5.0.3`
2021
- `org.jetbrains.kotlin:kotlin-gradle-plugin -> 1.6.10`
21-
- `com.javiersc.gradle-plugins:all-plugins -> 0.1.0-rc.24`
2222

2323
## [0.1.0-alpha.3] - 2021-11-29
2424

build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ plugins {
33
`javiersc-all-projects`
44
`javiersc-changelog`
55
`javiersc-code-analysis`
6+
`javiersc-code-coverage`
67
`javiersc-code-formatter`
78
`javiersc-docs`
89
`javiersc-nexus`

gradle.properties

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ allProjects.group=com.javiersc
66
allProjects.name=kotlin
77
readmeBadges.mainProject=kotlin-stdlib
88
####################################################################################################
9+
### CODE ANALYSIS ###
10+
####################################################################################################
11+
codeAnalysis.sonar.organization=javiersc
12+
####################################################################################################
913
### POM ###
1014
####################################################################################################
1115
pom.name=JavierSC Kotlin stdlib

gradle/pluginLibs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[versions]
2-
javierscGradlePlugins = "0.1.0-rc.24"
2+
javierscGradlePlugins = "0.1.0-rc.39"
33
kotlin = "1.6.10"
44
kotlinBinaryValidator = "0.8.0"
55

0 commit comments

Comments
 (0)