1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| @echo off
| set pan=""
| set currPath=""
| set jarName = ""
|
| set pan=%~d0
| set currPath=%~dp0
|
| %pan%
|
| cd %currPath%
|
| mvn smart-doc:html -Dfile.encoding=UTF-8 -pl :xxx-yyy -am
| mvn smart-doc:openapi -Dfile.encoding=UTF-8 -pl :xxx-yyy -am
|
| pause>nul
|
|