فهرست منبع

update pom.xml to v4.0.1-RELEASE

deason 4 سال پیش
والد
کامیت
42c06add88

+ 1 - 1
examcloud-task-api-provider/pom.xml

@@ -3,7 +3,7 @@
 	<parent>
 		<groupId>cn.com.qmth.examcloud.task</groupId>
 		<artifactId>examcloud-task</artifactId>
-		<version>v3.0-RELEASE</version>
+		<version>v4.0.1-RELEASE</version>
 	</parent>
 	<artifactId>examcloud-task-api-provider</artifactId>
 

+ 1 - 1
examcloud-task-base/pom.xml

@@ -3,7 +3,7 @@
 	<parent>
 		<groupId>cn.com.qmth.examcloud.task</groupId>
 		<artifactId>examcloud-task</artifactId>
-		<version>v3.0-RELEASE</version>
+		<version>v4.0.1-RELEASE</version>
 	</parent>
 	<artifactId>examcloud-task-base</artifactId>
 

+ 1 - 1
examcloud-task-dao/pom.xml

@@ -3,7 +3,7 @@
 	<parent>
 		<groupId>cn.com.qmth.examcloud.task</groupId>
 		<artifactId>examcloud-task</artifactId>
-		<version>v3.0-RELEASE</version>
+		<version>v4.0.1-RELEASE</version>
 	</parent>
 	<artifactId>examcloud-task-dao</artifactId>
 

+ 1 - 1
examcloud-task-service/pom.xml

@@ -3,7 +3,7 @@
 	<parent>
 		<groupId>cn.com.qmth.examcloud.task</groupId>
 		<artifactId>examcloud-task</artifactId>
-		<version>v3.0-RELEASE</version>
+		<version>v4.0.1-RELEASE</version>
 	</parent>
 	<artifactId>examcloud-task-service</artifactId>
 

+ 1 - 5
examcloud-task-starter/pom.xml

@@ -4,15 +4,11 @@
 	<parent>
 		<groupId>cn.com.qmth.examcloud.task</groupId>
 		<artifactId>examcloud-task</artifactId>
-		<version>v3.0-RELEASE</version>
+		<version>v4.0.1-RELEASE</version>
 	</parent>
 	<artifactId>examcloud-task-starter</artifactId>
 
 	<dependencies>
-		<dependency>
-			<groupId>com.github.xiaoymin</groupId>
-			<artifactId>swagger-bootstrap-ui</artifactId>
-		</dependency>
 		<dependency>
 			<groupId>cn.com.qmth.examcloud.task</groupId>
 			<artifactId>examcloud-task-api-provider</artifactId>

+ 0 - 18
examcloud-task-starter/shell/jenkins.sh

@@ -1,18 +0,0 @@
-#!/bin/bash
-pwd
-
-rm -rf ~/project/examcloud/examcloud-task-distribution.zip
-rm -rf ~/project/examcloud/examcloud-task/lib/
-
-cp examcloud-task-starter/target/examcloud-task-distribution.zip ~/project/examcloud/
-
-cd  ~/project/examcloud/
-unzip -o examcloud-task-distribution.zip
-
-cd examcloud-task
-echo "--spring.profiles.active=test --examcloud.startup.configCenterHost=localhost" > start.args
-echo "-server -Xms512m -Xmx512m  -XX:-UseGCOverheadLimit" > start.vmoptions
-
-bash stop.sh
-BUILD_ID=DONTKILLME
-bash start.sh 110

+ 1 - 1
examcloud-task-starter/shell/start.args

@@ -1 +1 @@
---spring.profiles.active=dev
+--spring.profiles.active=dev --examcloud.startup.configCenterHost=192.168.10.39

+ 1 - 1
examcloud-task-starter/shell/start.sh

@@ -2,7 +2,7 @@
 
 FILE_PATH=$(cd `dirname $0`; pwd)
 
-APP_MAIN_JAR="examcloud-task-starter-v3.0-RELEASE.jar"
+APP_MAIN_JAR="examcloud-task-starter-v4.0.1-RELEASE.jar"
 
 JAVA_OPTS=`cat $FILE_PATH/start.vmoptions`
 APP_ARGS=`cat $FILE_PATH/start.args`

+ 1 - 1
examcloud-task-starter/shell/start.vmoptions

@@ -1 +1 @@
--server -Xms256m -Xmx256m
+-server -Xms256m -Xmx256m -XX:-UseGCOverheadLimit -Dlog.commonLevel=INFO

+ 1 - 1
examcloud-task-starter/shell/stop.sh

@@ -2,7 +2,7 @@
 
 FILE_PATH=$(cd `dirname $0`; pwd)
 
-APP_MAIN_JAR="examcloud-task-starter-v3.0-RELEASE.jar"
+APP_MAIN_JAR="examcloud-task-starter-v4.0.1-RELEASE.jar"
 
 PID_LIST=`ps -ef|grep $APP_MAIN_JAR|grep java|awk '{print $2}'`
 

+ 23 - 30
pom.xml

@@ -1,31 +1,24 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0"
-	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
-	<modelVersion>4.0.0</modelVersion>
-	<parent>
-		<groupId>cn.com.qmth.examcloud</groupId>
-		<artifactId>examcloud-parent</artifactId>
-		<version>v3.0-RELEASE</version>
-	</parent>
-	<groupId>cn.com.qmth.examcloud.task</groupId>
-	<artifactId>examcloud-task</artifactId>
-	<version>v3.0-RELEASE</version>
-	<packaging>pom</packaging>
-	<dependencyManagement>
-		<dependencies>
-			<dependency>
-				<groupId>com.github.xiaoymin</groupId>
-				<artifactId>swagger-bootstrap-ui</artifactId>
-				<version>1.9.3</version>
-			</dependency>
-		</dependencies>
-	</dependencyManagement>
-	<modules>
-		<module>examcloud-task-api-provider</module>
-		<module>examcloud-task-service</module>
-		<module>examcloud-task-base</module>
-		<module>examcloud-task-dao</module>
-		<module>examcloud-task-starter</module>
-	</modules>
-</project>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+    <groupId>cn.com.qmth.examcloud.task</groupId>
+    <artifactId>examcloud-task</artifactId>
+    <version>v4.0.1-RELEASE</version>
+    <packaging>pom</packaging>
+
+    <parent>
+        <groupId>cn.com.qmth.examcloud</groupId>
+        <artifactId>examcloud-parent</artifactId>
+        <version>v4.0.1-RELEASE</version>
+    </parent>
+
+    <modules>
+        <module>examcloud-task-base</module>
+        <module>examcloud-task-dao</module>
+        <module>examcloud-task-service</module>
+        <module>examcloud-task-api-provider</module>
+        <module>examcloud-task-starter</module>
+    </modules>
+
+</project>