DocSpace-buildtools/scripts/identity.bat

28 lines
441 B
Batchfile
Raw Permalink Normal View History

2023-10-19 13:43:09 +00:00
PUSHD %~dp0..
2024-07-04 13:01:28 +00:00
cd %~dp0../../server/common/ASC.Identity/
2023-10-19 13:43:09 +00:00
2024-07-04 13:01:28 +00:00
echo Start build ASC.Identity project...
echo.
2023-10-19 13:43:09 +00:00
2024-07-04 13:01:28 +00:00
echo ASC.Identity: resolves all project dependencies...
echo.
call mvn dependency:go-offline -q
if %errorlevel% == 0 (
echo ASC.Identity: take the compiled code and package it in its distributable format, such as a JAR...
call mvn package -DskipTests -q
)
if %errorlevel% == 0 (
echo ASC.Identity: build completed
echo.
)
2023-10-19 13:43:09 +00:00
POPD