Skip to content

Commit

Permalink
Update Rackon and Rrgit.
Browse files Browse the repository at this point in the history
  • Loading branch information
Maksim Kostromin committed Mar 31, 2022
1 parent 1db8a41 commit 9ae219b
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ env:
NODE_VERSION: 17.7.2
jobs:
updates:
name: updates java-${{ matrix.java }}
name: updates
#See reference: https://docs.github.com/en/actions/reference/context-and-expression-syntax-for-github-actions#functions
#manual job definition:
if: startsWith(github.event.inputs.trigger, 'm')
Expand Down Expand Up @@ -45,7 +45,7 @@ jobs:
- run: cd $GITHUB_WORKSPACE ; ./gradlew --no-daemon dependencyUpdates -Drevision=release
- run: cd $GITHUB_WORKSPACE ; ./mvnw versions:display-property-updates -P updates
check:
name: updates java-${{ matrix.java }}
name: check java-${{ matrix.java }}
#See reference: https://docs.github.com/en/actions/reference/context-and-expression-syntax-for-github-actions#functions
#automatic job definition:
if: github.event.inputs.trigger == ''
Expand Down
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,10 @@ tasks {
}
register("status") {
doLast {
val status = grgit.status() ?: return@doLast
println("workspace is clean: ${status.isClean}")
val status = grgit.status() ?: return@doLast println("no unstaged changes")

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

val result = status.unstaged.allChanges.joinToString(separator = "") { "\n- $it" }
println("""all unstaged changes: $result""")
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ hibernateJava8Version = 5.6.7.Final
wrapperVersion = 7.4.2

querydslVersion = 1.0.10
grgitPluginVersion = 5.0.0-rc.3
reckonPluginVersion = 0.13.1
grgitPluginVersion = 5.0.0-rc.7
reckonPluginVersion = 0.16.1
lombokPluginVersion = 5.0.0
versionsVersion = 0.42.0
dependencyManagementVersion = 1.0.11.RELEASE
Expand Down
3 changes: 1 addition & 2 deletions modules/apps/file-server/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@ val fontAwesomeVersion: String by project
val bootstrapFileInputVersion: String by project

dependencies {
arrayOf(":modules:libraries:props",
":modules:libraries:web-security")
arrayOf(":modules:libraries:props", ":modules:libraries:web-security")
.map { project(it) }
.forEach {
annotationProcessor(it)
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@
<spring.boot.version>2.6.6</spring.boot.version>
<font.awesome.version>6.1.0</font.awesome.version>
<lombok.plugin.version>5.0.0</lombok.plugin.version>
<reckon.plugin.version>0.13.1</reckon.plugin.version>
<grgit.plugin.version>5.0.0-rc.3</grgit.plugin.version>
<reckon.plugin.version>0.16.1</reckon.plugin.version>
<grgit.plugin.version>5.0.0-rc.7</grgit.plugin.version>
<hibernate.java8.version>5.6.7.Final</hibernate.java8.version>
<bootstrap.file.input.version>5.2.5</bootstrap.file.input.version>
<versions.gradle.plugin.version>0.42.0</versions.gradle.plugin.version>
Expand Down

0 comments on commit 9ae219b

Please sign in to comment.