浏览代码

新建jeecg-module-interlock联锁模块

LLL 9 月之前
父节点
当前提交
e7befaec7f
共有 3 个文件被更改,包括 38 次插入4 次删除
  1. 26 0
      jeecg-module-interlock/pom.xml
  2. 9 2
      jeecg-module-system/jeecg-system-start/pom.xml
  3. 3 2
      pom.xml

+ 26 - 0
jeecg-module-interlock/pom.xml

@@ -0,0 +1,26 @@
+<?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>jeecg-boot-parent</artifactId>
+        <groupId>org.jeecgframework.boot</groupId>
+        <version>3.4.3</version>
+    </parent>
+    <modelVersion>4.0.0</modelVersion>
+
+    <artifactId>jeecg-module-interlock</artifactId>
+
+    <properties>
+        <maven.compiler.source>8</maven.compiler.source>
+        <maven.compiler.target>8</maven.compiler.target>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.jeecgframework.boot</groupId>
+            <artifactId>jeecg-boot-base-core</artifactId>
+        </dependency>
+    </dependencies>
+
+</project>

+ 9 - 2
jeecg-module-system/jeecg-system-start/pom.xml

@@ -10,8 +10,15 @@
     <modelVersion>4.0.0</modelVersion>
 
     <artifactId>jeecg-system-start</artifactId>
-    
+
     <dependencies>
+        <!-- interlock 联锁模块 -->
+        <dependency>
+            <groupId>org.jeecgframework.boot</groupId>
+            <artifactId>jeecg-module-interlock</artifactId>
+            <version>${jeecgboot.version}</version>
+        </dependency>
+
         <!-- SYSTEM 系统管理模块 -->
         <dependency>
             <groupId>org.jeecgframework.boot</groupId>
@@ -35,4 +42,4 @@
         </plugins>
     </build>
 
-</project>
+</project>

+ 3 - 2
pom.xml

@@ -65,6 +65,7 @@
         <module>jeecg-boot-base-core</module>
         <module>jeecg-module-demo</module>
         <module>jeecg-module-system</module>
+		<module>jeecg-module-interlock</module>
 	</modules>
 
 	<repositories>
@@ -393,7 +394,7 @@
 			<url>http://maven.jeecg.com:8090/nexus/content/repositories/snapshots/</url>
 		</snapshotRepository>
 	</distributionManagement>
-	
+
     <!-- 环境 -->
     <profiles>
         <!-- 开发 -->
@@ -439,4 +440,4 @@
 			</modules>
 		</profile>
     </profiles>
-</project>
+</project>