瀏覽代碼

阅卷对外接口服务模块

nikang 6 年之前
父節點
當前提交
165fd52065

+ 24 - 0
examcloud-core-marking-api-client/pom.xml

@@ -0,0 +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">
+    <parent>
+        <artifactId>examcloud-rmi</artifactId>
+        <groupId>cn.com.qmth.examcloud.rmi</groupId>
+        <version>2.0-SNAPSHOT</version>
+    </parent>
+    <modelVersion>4.0.0</modelVersion>
+
+    <artifactId>examcloud-core-marking-api-client</artifactId>
+    <packaging>jar</packaging>
+
+    <dependencies>
+        <dependency>
+            <groupId>cn.com.qmth.examcloud.rmi</groupId>
+            <artifactId>examcloud-core-marking-api</artifactId>
+            <version>${examcloud.version}</version>
+        </dependency>
+    </dependencies>
+
+
+</project>

+ 13 - 0
examcloud-core-marking-api-client/src/main/java/cn/com/qmth/examcloud/marking/api/client/BasicCloudClientSupport.java

@@ -0,0 +1,13 @@
+package cn.com.qmth.examcloud.marking.api.client;
+
+import cn.com.qmth.examcloud.commons.web.support.CloudClientSupport;
+
+/**
+ * @ClassName BasicCloudClientSupport
+ * @Description TODO
+ * @Author nikang
+ * @Date 2018/8/31 14:27
+ * @Version 2.0
+ */
+public abstract class BasicCloudClientSupport extends CloudClientSupport {
+}

+ 24 - 0
examcloud-core-marking-api/pom.xml

@@ -0,0 +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">
+    <parent>
+        <artifactId>examcloud-rmi</artifactId>
+        <groupId>cn.com.qmth.examcloud.rmi</groupId>
+        <version>2.0-SNAPSHOT</version>
+    </parent>
+    <modelVersion>4.0.0</modelVersion>
+
+    <artifactId>examcloud-core-marking-api</artifactId>
+    <packaging>jar</packaging>
+
+    <dependencies>
+        <dependency>
+            <groupId>cn.com.qmth.examcloud.commons</groupId>
+            <artifactId>examcloud-commons-web</artifactId>
+            <version>${examcloud.version}</version>
+        </dependency>
+    </dependencies>
+
+
+</project>

+ 3 - 0
pom.xml

@@ -38,6 +38,9 @@
         
         <module>examcloud-core-oe-websocket-api</module>
         <module>examcloud-core-oe-websocket-api-client</module>
+
+        <module>examcloud-core-marking-api</module>
+        <module>examcloud-core-marking-api-client</module>
     </modules>
 
 </project>