deason il y a 5 ans
Parent
commit
665c40d78e

+ 6 - 6
examcloud-core-oe-student-base/pom.xml

@@ -76,6 +76,11 @@
             <artifactId>examcloud-ws-api-client</artifactId>
             <version>${examcloud.version}</version>
         </dependency>
+        <dependency>
+            <groupId>cn.com.qmth.examcloud.rpc</groupId>
+            <artifactId>examcloud-core-marking-api-client</artifactId>
+            <version>${examcloud.version}</version>
+        </dependency>
 
         <dependency>
             <groupId>org.apache.httpcomponents</groupId>
@@ -89,13 +94,11 @@
         <dependency>
             <groupId>org.json</groupId>
             <artifactId>json</artifactId>
-            <version>20140107</version>
         </dependency>
 
         <dependency>
             <groupId>org.hibernate</groupId>
             <artifactId>hibernate-validator</artifactId>
-            <version>5.3.6.Final</version>
         </dependency>
 
         <dependency>
@@ -116,18 +119,15 @@
         <dependency>
             <groupId>com.upyun</groupId>
             <artifactId>java-sdk</artifactId>
-            <version>3.16</version>
         </dependency>
-
         <dependency>
             <groupId>com.baidu.aip</groupId>
             <artifactId>java-sdk</artifactId>
-            <version>4.0.0</version>
         </dependency>
+
         <dependency>
             <groupId>com.esotericsoftware</groupId>
             <artifactId>reflectasm</artifactId>
-            <version>1.11.3</version>
         </dependency>
     </dependencies>
 

+ 1 - 0
examcloud-core-oe-student-starter/shell/start.args

@@ -0,0 +1 @@
+--spring.profiles.active=aliyun-dev --examcloud.startup.configCenterHost=192.168.1.210

+ 1 - 1
examcloud-core-oe-student-starter/shell/start.vmoptions

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

+ 18 - 17
pom.xml

@@ -1,20 +1,21 @@
-<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>v4.0.1-SNAPSHOT</version>
-	</parent>
-	<artifactId>examcloud-core-oe-student</artifactId>
-	<version>v4.0.1-SNAPSHOT</version>
-	<packaging>pom</packaging>
+<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>v4.0.1-SNAPSHOT</version>
+    </parent>
+    <artifactId>examcloud-core-oe-student</artifactId>
+    <version>v4.0.1-SNAPSHOT</version>
+    <packaging>pom</packaging>
 
+    <modules>
+        <module>examcloud-core-oe-student-base</module>
+        <module>examcloud-core-oe-student-dao</module>
+        <module>examcloud-core-oe-student-service</module>
+        <module>examcloud-core-oe-student-api-provider</module>
+        <module>examcloud-core-oe-student-starter</module>
+    </modules>
 
-	<modules>
-		<module>examcloud-core-oe-student-api-provider</module>
-		<module>examcloud-core-oe-student-service</module>
-		<module>examcloud-core-oe-student-dao</module>
-		<module>examcloud-core-oe-student-base</module>
-		<module>examcloud-core-oe-student-starter</module>
-	</modules>
 </project>