Skip to content

Commit 57dc2ac

Browse files
committed
Update Makefile and gradle.properties for improved builds
Add `SHELL := /bin/bash` in Makefile for consistent shell usage and implement a `tag-sync` target for tag synchronization. Increment `pluginsVersion` in gradle.properties to 1.0.16 for updated plugin compatibility.
1 parent 598dede commit 57dc2ac

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
SHELL := /bin/bash
2+
13
target ?= 8.5
24
tag ?= 1.0.0-SNAPSHOT
35

@@ -20,3 +22,6 @@ publish:
2022

2123
publish-version:
2224
./installer $(tag)
25+
26+
tag-sync:
27+
comm -23 <(git tag | sort) <(git ls-remote --tags origin | sed 's/.*\///' | sed 's/\^{}//' | sort) | xargs -n 1 git tag -d

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Plugin
2-
pluginsVersion=1.0.15
2+
pluginsVersion=1.0.16
33
releaseBranch=main
44
defaultBuiltBy=@Software Place
55
pluginsGroup=com.github.softwareplace.springboot

0 commit comments

Comments
 (0)