We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5dd4c83 commit e2bbf5aCopy full SHA for e2bbf5a
Makefile
@@ -1,8 +1,10 @@
1
.PHONY: install test test-integration clean
2
3
+VERSION := $(shell mvn help:evaluate -Dexpression=project.version | grep -e '^[^\[]')
4
install:
5
@java -version || (echo "Java is not installed, please install Java >= 7"; exit 1);
6
mvn clean install -DskipTests=true -Dgpg.skip -B
7
+ cp target/java-http-client-$(VERSION).jar java-http-client.jar
8
9
test:
10
mvn test
0 commit comments