File tree Expand file tree Collapse file tree 15 files changed +1946
-60
lines changed
commonMain/kotlin/com/javiersc/kotlin/stdlib
com/javiersc/kotlin/stdlib Expand file tree Collapse file tree 15 files changed +1946
-60
lines changed Original file line number Diff line number Diff line change 7
7
description : ' Gradle args for `build` step'
8
8
default : ' '
9
9
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
10
15
11
16
jobs :
12
17
build :
13
18
uses : JavierSegoviaCordoba/reusable-workflows/.github/workflows/build-kotlin.yaml@main
14
19
with :
15
20
gradle-args : ' ${{ github.event.inputs.gradle-args }}'
16
21
allow-github-actor-bots : false
17
- publish-snapshot : true
18
- publish-docs : true
22
+ publish-all-docs : ' ${{ github.event.inputs.publish-all-docs }}'
19
23
secrets :
20
24
OSS_USER : ' ${{ secrets.OSS_USER }}'
21
25
OSS_TOKEN : ' ${{ secrets.OSS_TOKEN }}'
22
26
OSS_STAGING_PROFILE_ID : ' ${{ secrets.OSS_STAGING_PROFILE_ID }}'
27
+ SONAR_TOKEN : ' ${{ secrets.SONAR_TOKEN }}'
Original file line number Diff line number Diff line change 18
18
uses : JavierSegoviaCordoba/reusable-workflows/.github/workflows/build-kotlin.yaml@main
19
19
with :
20
20
allow-github-actor-bots : false
21
- publish-snapshot : true
22
- publish-docs : true
23
21
secrets :
24
22
OSS_USER : ' ${{ secrets.OSS_USER }}'
25
23
OSS_TOKEN : ' ${{ secrets.OSS_TOKEN }}'
26
24
OSS_STAGING_PROFILE_ID : ' ${{ secrets.OSS_STAGING_PROFILE_ID }}'
25
+ SONAR_TOKEN : ' ${{ secrets.SONAR_TOKEN }}'
Original file line number Diff line number Diff line change 8
8
jobs :
9
9
publish :
10
10
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
17
11
secrets :
18
- GITHUB_TOKEN : ' ${{ secrets.GITHUB_TOKEN }}'
19
12
OSS_USER : ' ${{ secrets.OSS_USER }}'
20
13
OSS_TOKEN : ' ${{ secrets.OSS_TOKEN }}'
21
14
OSS_STAGING_PROFILE_ID : ' ${{ secrets.OSS_STAGING_PROFILE_ID }}'
29
22
JETBRAINS_MARKETPLACE_KEY : ' ${{ secrets.JETBRAINS_MARKETPLACE_KEY }}'
30
23
JETBRAINS_MARKETPLACE_KEY_PASSPHRASE : ' ${{ secrets.JETBRAINS_MARKETPLACE_KEY_PASSPHRASE }}'
31
24
JETBRAINS_MARKETPLACE_TOKEN : ' ${{ secrets.JETBRAINS_MARKETPLACE_TOKEN }}'
25
+ SONAR_TOKEN : ' ${{ secrets.SONAR_TOKEN }}'
Original file line number Diff line number Diff line change 14
14
15
15
### Updated
16
16
17
+ - ` com.javiersc.gradle-plugins:all-plugins -> 0.1.0-rc.39 `
17
18
- ` org.jetbrains.kotlinx:kotlinx-coroutines-core -> 1.6.0 `
18
19
- ` gradle -> 7.3.3 `
19
20
- ` io.kotest:kotest-assertions-core -> 5.0.3 `
20
21
- ` org.jetbrains.kotlin:kotlin-gradle-plugin -> 1.6.10 `
21
- - ` com.javiersc.gradle-plugins:all-plugins -> 0.1.0-rc.24 `
22
22
23
23
## [ 0.1.0-alpha.3] - 2021-11-29
24
24
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ plugins {
3
3
`javiersc- all- projects`
4
4
`javiersc- changelog`
5
5
`javiersc- code- analysis`
6
+ `javiersc- code- coverage`
6
7
`javiersc- code- formatter`
7
8
`javiersc- docs`
8
9
`javiersc- nexus`
Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ allProjects.group=com.javiersc
6
6
allProjects.name =kotlin
7
7
readmeBadges.mainProject =kotlin-stdlib
8
8
# ###################################################################################################
9
+ # ## CODE ANALYSIS ###
10
+ # ###################################################################################################
11
+ codeAnalysis.sonar.organization =javiersc
12
+ # ###################################################################################################
9
13
# ## POM ###
10
14
# ###################################################################################################
11
15
pom.name =JavierSC Kotlin stdlib
Original file line number Diff line number Diff line change 1
1
[versions ]
2
- javierscGradlePlugins = " 0.1.0-rc.24 "
2
+ javierscGradlePlugins = " 0.1.0-rc.39 "
3
3
kotlin = " 1.6.10"
4
4
kotlinBinaryValidator = " 0.8.0"
5
5
You can’t perform that action at this time.
0 commit comments