Skip to content

Commit cc23dc0

Browse files
authored
Merge pull request #8 from SpineEventEngine/update-build-timeout
Update `ApplyCodegenPlugins` Gradle task execution timeout
2 parents dd8608c + 04f013d commit cc23dc0

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

buildSrc/src/main/kotlin/detekt-code-analysis.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ detekt {
7373
// module's content. The custom config adds Compose-specific declarations.
7474
// See whether/how `config` can be updated accordingly.
7575
// See https://github.com/SpineEventEngine/Chords/issues/3
76-
config.from(files("${rootDir}/config/quality/detekt-config.yml"))
76+
config.from(files("${rootDir}/config/buildSrc/quality/detekt-config.yml"))
7777
}
7878

7979
tasks {

config

Submodule config updated 277 files

dependencies.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22

3-
# Dependencies of `io.spine.chords:spine-chords-gradle-plugin:1.9.20`
3+
# Dependencies of `io.spine.chords:spine-chords-gradle-plugin:1.9.21`
44

55
## Runtime
66
1. **Group** : com.google.code.findbugs. **Name** : jsr305. **Version** : 3.0.2.
@@ -751,4 +751,4 @@
751751

752752
The dependencies distributed under several licenses, are used according their commercial-use-friendly license.
753753

754-
This report was generated on **Mon Oct 21 20:27:54 EEST 2024** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE).
754+
This report was generated on **Mon Dec 29 10:48:38 EET 2025** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE).

gradle-plugin/src/functionalTest/kotlin/io/spine/chords/gradle/Given.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ repositories {
5252
chordsGradlePlugin {
5353
protoDependencies("io.spine:spine-money:1.5.0")
5454
codegenPluginsArtifact =
55-
"io.spine.chords:spine-chords-codegen-plugins:2.0.0-SNAPSHOT.35"
55+
"io.spine.chords:spine-chords-codegen-plugins:2.0.0-SNAPSHOT.81"
5656
}
5757
5858
""".trimIndent()

gradle-plugin/src/main/kotlin/io/spine/chords/gradle/ApplyCodegenPlugins.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public open class ApplyCodegenPlugins : DefaultTask() {
3030
/**
3131
* Default Gradle build timeout.
3232
*/
33-
private const val BUILD_TIMEOUT_MINUTES: Long = 10
33+
private const val BUILD_TIMEOUT_MINUTES: Long = 20
3434
}
3535

3636
/**

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ all modules and does not describe the project structure per-subproject.
1010
-->
1111
<groupId>io.spine.chords</groupId>
1212
<artifactId>Chords-Gradle-plugin</artifactId>
13-
<version>1.9.20</version>
13+
<version>1.9.21</version>
1414

1515
<inceptionYear>2015</inceptionYear>
1616

version.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@
3333
*
3434
* The version should be updated to `2.0.x` after migrating to Spine `2.0.x`.
3535
*/
36-
val gradlePluginVersion: String by extra("1.9.20")
36+
val gradlePluginVersion: String by extra("1.9.21")

0 commit comments

Comments
 (0)