2
0

fix: mvn deploy

This commit is contained in:
caiyuchao
2024-12-10 15:32:38 +08:00
parent 9ee1cb789e
commit fd9a31e6c1
3 changed files with 2 additions and 3 deletions

View File

@@ -6,7 +6,7 @@ if not "%1"=="" (
) )
cd .. cd ..
git pull git pull
call mvn clean package -P %profile_name% call mvn clean package -Dmaven.test.skip=true -P %profile_name%
cd docker cd docker
call copy.bat call copy.bat

View File

@@ -7,7 +7,7 @@ fi
cd .. cd ..
git pull git pull
mvn clean package -P ${profile_name} mvn clean package -Dmaven.test.skip=true -P ${profile_name}
cd docker cd docker
./copy.sh ./copy.sh

View File

@@ -18,7 +18,6 @@ public class UClientTest {
@Test @Test
public void test() { public void test() {
cdrService.test();
} }
} }