فهرست منبع

建立南网调度系统对接项目

xiaoguohua 5 روز پیش
والد
کامیت
70fb376d78
3فایلهای تغییر یافته به همراه42 افزوده شده و 1 حذف شده
  1. 31 0
      gateway/forecast-south/pom.xml
  2. 5 0
      gateway/forecast-south/src/main/java/SouthApplication.java
  3. 6 1
      gateway/pom.xml

+ 31 - 0
gateway/forecast-south/pom.xml

@@ -0,0 +1,31 @@
+<?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>
+
+    <artifactId>forecast-south</artifactId>
+    <description>南网调度上报子系统</description>
+
+    <parent>
+        <artifactId>forecast-gateway</artifactId>
+        <groupId>cn.oleauto</groupId>
+        <version>${revision}</version>
+    </parent>
+
+    <dependencies>
+        <dependency>
+            <groupId>cn.oleauto</groupId>
+            <artifactId>forecast-iec60870</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>cn.oleauto</groupId>
+            <artifactId>forecast-protocol-common</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>cn.hutool</groupId>
+            <artifactId>hutool-all</artifactId>
+        </dependency>
+    </dependencies>
+
+</project>

+ 5 - 0
gateway/forecast-south/src/main/java/SouthApplication.java

@@ -0,0 +1,5 @@
+public class SouthApplication {
+    public static void main(String[] args) {
+        System.out.println("SouthApplication");
+    }
+}

+ 6 - 1
gateway/pom.xml

@@ -41,6 +41,11 @@
                 <artifactId>forecast-modbus-rtu</artifactId>
                 <version>${revision}</version>
             </dependency>
+            <dependency>
+                <groupId>cn.oleauto</groupId>
+                <artifactId>forecast-south</artifactId>
+                <version>0.0.1-SNAPSHOT</version>
+            </dependency>
         </dependencies>
     </dependencyManagement>
 
@@ -52,6 +57,6 @@
         <module>forecast-iec60870</module>
         <module>forecast-iec104</module>
 		<module>forecast-device-gateway</module>
-<!--        <module>elanguage</module>-->
+        <module>forecast-south</module>
     </modules>
 </project>