Skip to content

Commit 9ae219b

Browse files
author
Maksim Kostromin
committed
Update Rackon and Rrgit.
1 parent 1db8a41 commit 9ae219b

File tree

5 files changed

+10
-11
lines changed

5 files changed

+10
-11
lines changed

.github/workflows/tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ env:
1717
NODE_VERSION: 17.7.2
1818
jobs:
1919
updates:
20-
name: updates java-${{ matrix.java }}
20+
name: updates
2121
#See reference: https://docs.github.com/en/actions/reference/context-and-expression-syntax-for-github-actions#functions
2222
#manual job definition:
2323
if: startsWith(github.event.inputs.trigger, 'm')
@@ -45,7 +45,7 @@ jobs:
4545
- run: cd $GITHUB_WORKSPACE ; ./gradlew --no-daemon dependencyUpdates -Drevision=release
4646
- run: cd $GITHUB_WORKSPACE ; ./mvnw versions:display-property-updates -P updates
4747
check:
48-
name: updates java-${{ matrix.java }}
48+
name: check java-${{ matrix.java }}
4949
#See reference: https://docs.github.com/en/actions/reference/context-and-expression-syntax-for-github-actions#functions
5050
#automatic job definition:
5151
if: github.event.inputs.trigger == ''

build.gradle.kts

+3-3
Original file line numberDiff line numberDiff line change
@@ -82,10 +82,10 @@ tasks {
8282
}
8383
register("status") {
8484
doLast {
85-
val status = grgit.status() ?: return@doLast
86-
println("workspace is clean: ${status.isClean}")
85+
val status = grgit.status() ?: return@doLast println("no unstaged changes")
8786

88-
if (status.isClean or status.unstaged.allChanges.isEmpty()) return@doLast
87+
println("workspace is clean: ${status.isClean}")
88+
if (status.isClean or status.unstaged.allChanges.isEmpty()) return@doLast println("no unstaged changes")
8989

9090
val result = status.unstaged.allChanges.joinToString(separator = "") { "\n- $it" }
9191
println("""all unstaged changes: $result""")

gradle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ hibernateJava8Version = 5.6.7.Final
3030
wrapperVersion = 7.4.2
3131

3232
querydslVersion = 1.0.10
33-
grgitPluginVersion = 5.0.0-rc.3
34-
reckonPluginVersion = 0.13.1
33+
grgitPluginVersion = 5.0.0-rc.7
34+
reckonPluginVersion = 0.16.1
3535
lombokPluginVersion = 5.0.0
3636
versionsVersion = 0.42.0
3737
dependencyManagementVersion = 1.0.11.RELEASE

modules/apps/file-server/build.gradle.kts

+1-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ val fontAwesomeVersion: String by project
66
val bootstrapFileInputVersion: String by project
77

88
dependencies {
9-
arrayOf(":modules:libraries:props",
10-
":modules:libraries:web-security")
9+
arrayOf(":modules:libraries:props", ":modules:libraries:web-security")
1110
.map { project(it) }
1211
.forEach {
1312
annotationProcessor(it)

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@
7676
<spring.boot.version>2.6.6</spring.boot.version>
7777
<font.awesome.version>6.1.0</font.awesome.version>
7878
<lombok.plugin.version>5.0.0</lombok.plugin.version>
79-
<reckon.plugin.version>0.13.1</reckon.plugin.version>
80-
<grgit.plugin.version>5.0.0-rc.3</grgit.plugin.version>
79+
<reckon.plugin.version>0.16.1</reckon.plugin.version>
80+
<grgit.plugin.version>5.0.0-rc.7</grgit.plugin.version>
8181
<hibernate.java8.version>5.6.7.Final</hibernate.java8.version>
8282
<bootstrap.file.input.version>5.2.5</bootstrap.file.input.version>
8383
<versions.gradle.plugin.version>0.42.0</versions.gradle.plugin.version>

0 commit comments

Comments
 (0)