ソースを参照

update project version

deason 3 年 前
コミット
b74d5782d7
3 ファイル変更4 行追加2 行削除
  1. 2 0
      pom.xml
  2. 1 1
      shell/start.sh
  3. 1 1
      shell/stop.sh

+ 2 - 0
pom.xml

@@ -84,6 +84,8 @@
     </dependencies>
 
     <build>
+        <finalName>${project.artifactId}</finalName>
+
         <plugins>
             <plugin>
                 <groupId>org.springframework.boot</groupId>

+ 1 - 1
shell/start.sh

@@ -1,6 +1,6 @@
 #!/bin/bash
 
-PROJECT_JAR="examcloud-app-api-v4.1.0-SNAPSHOT.jar"
+PROJECT_JAR="examcloud-app-api-v4.1.0-RELEASE.jar"
 
 PROJECT_JVM_ARGS=`cat start.vmoptions`
 

+ 1 - 1
shell/stop.sh

@@ -1,6 +1,6 @@
 #!/bin/bash
 
-PROJECT_JAR="examcloud-app-api-v4.1.0-SNAPSHOT.jar"
+PROJECT_JAR="examcloud-app-api-v4.1.0-RELEASE.jar"
 
 ps -ef | grep $PROJECT_JAR | grep java | awk '{printf("kill -15 %s\n",$2)}' | sh
 BUILD_ID=DONTKILLME