From 99dd5a112b39a934c01e92a82ed933ddc2eb0601 Mon Sep 17 00:00:00 2001 From: Andres Aguiar Date: Wed, 11 Feb 2026 20:11:29 -0300 Subject: [PATCH 1/2] chore: added 'make build' and fixed gardle warning --- Makefile | 7 ++++++- build.gradle | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 9d739ca7..e3ec2b40 100644 --- a/Makefile +++ b/Makefile @@ -1,13 +1,18 @@ -.PHONY: help test test-integration lint fmt +.PHONY: help build test test-integration lint fmt # Default target when 'make' is run without arguments help: @echo "Available targets:" + @echo " build - Compile the project" @echo " test - Run unit tests" @echo " test-integration - Run integration tests" @echo " lint - Run static analysis and checkstyle" @echo " fmt - Auto-format code using Spotless" +# Compile the project +build: + ./gradlew build -x test -x check + # Run unit tests test: ./gradlew test diff --git a/build.gradle b/build.gradle index 324d9f6e..ce8590e2 100644 --- a/build.gradle +++ b/build.gradle @@ -143,7 +143,7 @@ testing { // Ref: https://github.com/diffplug/spotless/tree/main/plugin-gradle spotless { // comment out below to run spotless as part of the `check` task - enforceCheck false + enforceCheck = false format 'misc', { // define the files (e.g. '*.gradle', '*.md') to apply `misc` to target '.gitignore' From 20885b8b91dafe11a580a268afd4c059e58de7e0 Mon Sep 17 00:00:00 2001 From: Andres Aguiar Date: Wed, 11 Feb 2026 22:19:35 -0300 Subject: [PATCH 2/2] chore: makefile fixes --- Makefile | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/Makefile b/Makefile index e3ec2b40..50e22301 100644 --- a/Makefile +++ b/Makefile @@ -1,17 +1,19 @@ -.PHONY: help build test test-integration lint fmt +.PHONY: help build test test-integration lint fmt clean all # Default target when 'make' is run without arguments help: @echo "Available targets:" - @echo " build - Compile the project" - @echo " test - Run unit tests" + @echo " build - Compile the project" + @echo " test - Run unit tests" @echo " test-integration - Run integration tests" - @echo " lint - Run static analysis and checkstyle" - @echo " fmt - Auto-format code using Spotless" + @echo " lint - Run static analysis and checkstyle" + @echo " fmt - Auto-format code using Spotless" + @echo " clean - Clean build artifacts" + @echo " all - Run all tests and lint" # Compile the project build: - ./gradlew build -x test -x check + ./gradlew assemble # Run unit tests test: @@ -29,11 +31,9 @@ lint: fmt: ./gradlew spotlessApply - # Clean build artifacts clean: ./gradlew clean -# Run all tests +# Run all tests and lint all: test lint - @echo "All checks completed"