File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 11# ## CONFIG ###
22#
3- export PATH :=$(CURDIR ) /scripts:$(PATH )
3+ export PATH :=$(CURDIR ) : $( CURDIR ) /scripts:$(PATH )
44
55# ## TARGETS ###
66#
77default : run
88
99binary : clean # # Build the binary distribution
10- @mvn package -P assemblies -Dgpg.skip=true
10+ @mvnw package -P assemblies -Dgpg.skip=true
1111
1212help :
1313 @grep -E ' ^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST ) | sort | awk ' BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
1414
1515clean : # # Clean all build artefacts
16- @mvn clean
16+ @mvnw clean
1717
1818compile : # # Compile the source code
19- @mvn compile
19+ @mvnw compile
2020
2121jar : clean # # Build the JAR file
22- @mvn package
22+ @mvnw package
2323
2424run : compile # # Run PerfTest, pass exec arguments via ARGS
25- @mvn exec:java -Dexec.mainClass=" com.rabbitmq.perf.PerfTest" -Dexec.args=" ${ARGS} "
25+ @mvnw exec:java -Dexec.mainClass=" com.rabbitmq.perf.PerfTest" -Dexec.args=" ${ARGS} "
2626
2727signed-binary : clean # # Build a GPG signed binary
28- @mvn package -P assemblies
28+ @mvnw package -P assemblies
2929
3030.PHONY : help run
You can’t perform that action at this time.
0 commit comments