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.
2 parents d1ea634 + bf12724 commit 5f02a43Copy full SHA for 5f02a43
.gitignore
@@ -29,3 +29,5 @@ repo/
29
30
# Environment files
31
.env/*.*
32
+
33
+java-http-client.jar
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