mirror of
https://github.com/amithkoujalgi/ollama4j.git
synced 2025-05-15 03:47:13 +02:00
17 lines
426 B
Makefile
17 lines
426 B
Makefile
ut:
|
|
mvn clean test -Punit-tests
|
|
|
|
it:
|
|
mvn clean verify -Pintegration-tests
|
|
|
|
build:
|
|
mvn -B clean test install -Punit-tests -Dgpg.passphrase="${GPG_PASSPHRASE}" -e
|
|
|
|
release:
|
|
mvn -B clean install -Punit-tests release:clean release:prepare release:perform -Dgpg.passphrase="${GPG_PASSPHRASE}" -e
|
|
|
|
update-version:
|
|
mvn versions:set -DnewVersion=1.0.1
|
|
|
|
deploy:
|
|
mvn clean deploy -Punit-tests -Dgpg.passphrase="$GPG_PASSPHRASE" -e
|