Skip to content

Commit ca21d7e

Browse files
authored
preparing 0.2.0 (#48)
* preparing 0.2.0 * using the jdk version for the matrix
1 parent 6ce0b0d commit ca21d7e

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,14 @@ jobs:
99
strategy:
1010
matrix:
1111
os: [ubuntu-latest,macos-latest]
12+
version: [11, 17, 21]
1213
runs-on: ${{ matrix.os }}
1314
steps:
1415
- uses: actions/checkout@v4
1516
- uses: actions/setup-java@v4
1617
with:
1718
distribution: temurin
18-
java-version: 11
19+
java-version: ${{ matrix.version }}
1920

2021
- name: Setup Gradle
2122
uses: gradle/actions/setup-gradle@v4

README.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Apply the plugin in the main `build.gradle(.kts)` configuration file:
99
Using the plugins DSL:
1010
``` groovy
1111
plugins {
12-
id("io.github.cdsap.kotlinprocess") version "0.1.7"
12+
id("io.github.cdsap.kotlinprocess") version "0.2.0"
1313
}
1414
```
1515

@@ -20,7 +20,7 @@ buildscript {
2020
gradlePluginPortal()
2121
}
2222
dependencies {
23-
classpath("io.github.cdsap:infokotlinprocess:0.1.7")
23+
classpath("io.github.cdsap:infokotlinprocess:0.2.0")
2424
}
2525
}
2626
@@ -31,7 +31,7 @@ apply(plugin = "io.github.cdsap.kotlinprocess")
3131
Using the plugins DSL:
3232
``` groovy
3333
plugins {
34-
id "io.github.cdsap.kotlinprocess" version "0.1.7"
34+
id "io.github.cdsap.kotlinprocess" version "0.2.0"
3535
}
3636
3737
```
@@ -43,23 +43,23 @@ buildscript {
4343
gradlePluginPortal()
4444
}
4545
dependencies {
46-
classpath "io.github.cdsap:infokotlinprocess:0.1.7"
46+
classpath "io.github.cdsap:infokotlinprocess:0.2.0"
4747
}
4848
}
4949
5050
apply plugin: "io.github.cdsap.kotlinprocess"
5151
```
5252
## Output
5353
### Build Scans
54-
If you are using Gradle Enterprise, the information about the Kotlin processes will be included as custom value in the
54+
If you are using Develocity, the information about the Kotlin processes will be included as custom value in the
5555
Build Scan:
5656

5757
![](images/buildscan.png)
5858

5959
The field `Usage` represents the value obtained at the end of the build using `jstat` on the JVM process.
6060

6161
### Build Output
62-
If you are not using Gradle Enterprise, the information about the Kotlin processes will be included at the end of the build:
62+
If you are not using Develocity, the information about the Kotlin processes will be included at the end of the build:
6363
```
6464
> Task :core:ui:compileProdDebugKotlin
6565
┌─────────────────────────────────────────────────────────────────────────────┐
@@ -81,5 +81,4 @@ BUILD SUCCESSFUL in 35s
8181

8282
## Libraries
8383
* `com.gradle:develocity-gradle-plugin`
84-
* `com.gradle.enterprise:com.gradle.enterprise.gradle.plugin`
8584
* `com.jakewharton.picnic:picnic`

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
}
77

88
group = "io.github.cdsap"
9-
version = "0.1.7"
9+
version = "0.2.0"
1010

1111
java {
1212
toolchain {

src/test/kotlin/io/github/cdsap/kotlinprocess/InfoKotlinProcessPluginWtihBuildScanTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class InfoKotlinProcessPluginWtihBuildScanTest {
4747
4848
""".trimIndent()
4949
)
50-
listOf("8.1.1").forEach {
50+
listOf("8.14.2").forEach {
5151
val firstBuild = GradleRunner.create()
5252
.withProjectDir(testProjectDir.root)
5353
.withArguments("compileKotlin", "--configuration-cache")

0 commit comments

Comments
 (0)