Authored by chaogeng
  1 +#!/bin/bash
  2 +# cd $1 :where is the jenkins workspace
  3 +# 需要维护以下的信息 :
  4 +#################################################################
  5 +#项目类型:Springboot
  6 +#git路径:git@git.yoho.cn:datasync/yoho-datasync-fullsync.git
  7 +#打包脚本:mvn clean package -DskipTests
  8 +#打包完成后存放路径:yoho-datasync-fullsync/target/yoho-fullsync.jar*.jar
  9 +#启动的脚本 java -jar yoho-fullsync.jar
  10 +#运行的预计内存:2000M
  11 +#访问的端口:9010
  12 +#日志的路径: /Data/logs/yoho-fullsync
  13 +#健康检查标识(需要返回200):localhost:9011/actuator/health
  14 +#################################################################
  15 +cd $1
  16 +mvn clean package -DskipTests
@@ -42,7 +42,7 @@ @@ -42,7 +42,7 @@
42 </dependencies> 42 </dependencies>
43 43
44 <build> 44 <build>
45 - <finalName>yohofullsync</finalName> 45 + <finalName>yoho-fullsync</finalName>
46 <plugins> 46 <plugins>
47 <plugin> 47 <plugin>
48 <groupId>org.springframework.boot</groupId> 48 <groupId>org.springframework.boot</groupId>