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 33a3d78 commit c610e50Copy full SHA for c610e50
Makefile
@@ -15,6 +15,11 @@ init:
15
test:
16
./gradlew test --info
17
18
+# Run test coverage
19
+coverage:
20
+ ./gradlew test jacocoTestReport
21
+ @echo "Coverage report: build/reports/jacoco/test/html/index.html"
22
+
23
build: clean
24
./gradlew build publishToMavenLocal -x test
25
@echo "see build/lib"
build.gradle
@@ -1,10 +1,8 @@
1
// Java library
2
plugins {
3
id 'java-library'
4
-}
5
-
6
-plugins {
7
- id 'maven-publish'
+ id 'maven-publish'
+ id 'jacoco'
8
}
9
10
// Package default
0 commit comments