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 4788a7b commit 334e07cCopy full SHA for 334e07c
Makefile
@@ -20,19 +20,22 @@ coverage:
20
./gradlew test jacocoTestReport
21
@echo "Coverage report: build/reports/jacoco/test/html/index.html"
22
23
+# Build the project
24
build: clean
25
./gradlew build publishToMavenLocal -x test
26
@echo "see build/lib"
27
28
+# Build the demo project
29
oobt: build
30
$(MAKE) -C demo all
31
32
# Ruby must be installed (ERB is located under $GEM_HOME/bin or under Ruby installation)
33
readme:
34
erb -T '-' README.md.erb > README.md
35
36
+# Build the javadoc
37
doc:
- gradle javadoc --info --warning-mode all
38
+ ./gradlew javadoc --info --warning-mode all
39
40
# Create a release using GitHub
41
release: doc build
0 commit comments