blob: 76af8f33e708d14aa9b384941c66ffdbb9cb0ed8 [file] [log] [blame]
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
GIT_REV_SHORT = $(shell git rev-parse --short HEAD)
MAVEN_BINARY ?= mvn
package:
$(MAVEN_BINARY) clean package
test:
$(MAVEN_BINARY) clean test
update-version:
$(MAVEN_BINARY) versions:set -DnewVersion=$(new-version) -DgenerateBackupPoms=false
rpm:
$(MAVEN_BINARY) clean package -Dbuild-rpm -DskipTests
deb:
$(MAVEN_BINARY) clean package -Dbuild-deb -DskipTests
docker-build:
$(MAVEN_BINARY) clean package docker:build -DskipTests -Dbuild-deb
docker-push:
$(MAVEN_BINARY) clean package docker:build docker:push -DskipTests -Dbuild-deb