mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-14 16:22:07 +01:00
07d9d694da
To denote that Smack now requires at least Java 11 to run. Fixes SMACK-953.
30 lines
547 B
Makefile
30 lines
547 B
Makefile
GRADLE ?= ./gradlew
|
|
|
|
.PHONY: all
|
|
all: check jacocoRootReport javadocAll sinttest
|
|
|
|
.PHONY: codecov
|
|
codecov:
|
|
$(GRADLE) smack-java11-full:testCodeCoverageReport
|
|
echo "Report available at smack-java11-full/build/reports/jacoco/testCodeCoverageReport/html/index.html"
|
|
|
|
.PHONY: check
|
|
check:
|
|
$(GRADLE) $@
|
|
|
|
.PHONY: eclipse
|
|
eclipse:
|
|
$(GRADLE) $@
|
|
|
|
.PHONY: sinttest
|
|
sinttest:
|
|
$(GRADLE) $@
|
|
|
|
.PHONY: jacocoRootReport
|
|
jacocoRootReport:
|
|
$(GRADLE) $@
|
|
|
|
.PHONY: javadocAll
|
|
javadocAll:
|
|
$(GRADLE) $@
|
|
echo "Smack javadoc available at build/javadoc/index.html"
|