We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01cb3e3 commit 34eebedCopy full SHA for 34eebed
.github/workflows/hugo.yml
@@ -60,9 +60,9 @@ jobs:
60
submodules: recursive
61
fetch-depth: 0
62
- name: Build client_java
63
- run: ./mvnw -B clean install -DskipTests
+ run: mvn -B clean install -DskipTests
64
- name: Make Javadoc
65
- run: ./mvnw -B clean compile javadoc:javadoc javadoc:aggregate
+ run: mvn -B clean compile javadoc:javadoc javadoc:aggregate
66
- name: Move the Javadoc to docs/static/api/
67
run: mv ./target/site/apidocs ./docs/static/api && echo && echo 'ls ./docs/static/api' && ls ./docs/static/api
68
- name: Setup Pages
.gitignore
@@ -22,4 +22,11 @@
22
23
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
24
hs_err_pid*
25
-replay_pid*
+replay_pid*
26
+
27
+# Executables
28
+*.exe
29
+*.com
30
+*.dll
31
+*.bat
32
+*.msi
0 commit comments