We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 676fa98 + 58704e8 commit 9b858c8Copy full SHA for 9b858c8
2 files changed
.gitignore
@@ -10,3 +10,4 @@ gradle.properties
10
repo
11
.env
12
target/
13
+smtpapi-java.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/smtpapi-java-$(VERSION).jar smtpapi-java-client.jar
8
9
test:
mvn test
0 commit comments