Selaa lähdekoodia

添加业务系统模块,用于存放业务逻辑

liyan 6 kuukautta sitten
vanhempi
commit
32b91017cf

+ 21 - 0
jeecg-boot/jeecg-module-business/pom.xml

@@ -0,0 +1,21 @@
+<?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.7.1</version>
+    </parent>
+    <modelVersion>4.0.0</modelVersion>
+
+    <artifactId>jeecg-module-business</artifactId>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.jeecgframework.boot</groupId>
+            <artifactId>jeecg-boot-base-core</artifactId>
+        </dependency>
+    </dependencies>
+
+</project>

+ 9 - 3
jeecg-boot/jeecg-module-system/jeecg-system-start/pom.xml

@@ -10,7 +10,7 @@
     <modelVersion>4.0.0</modelVersion>
 
     <artifactId>jeecg-system-start</artifactId>
-    
+
     <dependencies>
         <!-- SYSTEM 系统管理模块 -->
         <dependency>
@@ -24,7 +24,13 @@
             <artifactId>jeecg-module-demo</artifactId>
             <version>${jeecgboot.version}</version>
         </dependency>
-        
+        <!-- BUSINESS 业务模块 -->
+        <dependency>
+            <groupId>org.jeecgframework.boot</groupId>
+            <artifactId>jeecg-module-business</artifactId>
+            <version>${jeecgboot.version}</version>
+        </dependency>
+
         <!-- flyway 数据库自动升级 -->
         <dependency>
             <groupId>org.flywaydb</groupId>
@@ -41,4 +47,4 @@
         </plugins>
     </build>
 
-</project>
+</project>

+ 1 - 14
jeecg-boot/pom.xml

@@ -6,20 +6,6 @@
   <packaging>pom</packaging>
   <name>JEECG BOOT ${project.version}</name>
 
-	<developers>
-		<developer>
-			<name>北京国炬信息技术有限公司</name>
-			<email>jeecgos@163.com</email>
-			<url>http://www.guojusoft.com</url>
-		</developer>
-	</developers>
-
-	<scm>
-		<connection>http://www.jeecg.com</connection>
-		<developerConnection>http://guojusoft.com</developerConnection>
-		<url>http://www.jeecg.com/vip</url>
-	</scm>
-
   	<parent>
 	    <groupId>org.springframework.boot</groupId>
 	    <artifactId>spring-boot-starter-parent</artifactId>
@@ -84,6 +70,7 @@
 	<modules>
         <module>jeecg-boot-base-core</module>
         <module>jeecg-module-demo</module>
+		<module>jeecg-module-business</module>
         <module>jeecg-module-system</module>
     </modules>