From 64d8831574d5c238643c4b499a78b6680f422fc7 Mon Sep 17 00:00:00 2001 From: Serhii Prodan <22973227+serpro69@users.noreply.github.com> Date: Fri, 29 Mar 2024 13:18:28 +0100 Subject: [PATCH] Fix snapshot-minor make command --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 20cbbfe51..95310938d 100644 --- a/Makefile +++ b/Makefile @@ -52,10 +52,10 @@ _snapshot-major: ## (DEPRECATED) publishes next snapshot with a major version bu --info .PHONY: snapshot-minor -_snapshot-minor: check_java ## (DEPRECATED) publishes next snapshot with a minor version bump +snapshot-minor: check_java ## publishes next snapshot with a minor version bump @:$(call check_defined, VERSION, semantic version string - 'X.Y.Z(-rc.\d+)?') - ./gradlew test integrationTest -Pversion='$(VERSION)-SNAPSHOT' + ./gradlew clean test integrationTest -Pversion='$(VERSION)-SNAPSHOT' ./gradlew nativeCompile -Pversion='$(VERSION)-SNAPSHOT' --info ./gradlew publishToSonatype -Pversion='$(VERSION)-SNAPSHOT' --info