xiaoguohua 2 hónapja
szülő
commit
5e45526aca
1 módosított fájl, 34 hozzáadás és 0 törlés
  1. 34 0
      forecast-dao/pom.xml

+ 34 - 0
forecast-dao/pom.xml

@@ -0,0 +1,34 @@
+<?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-dao</artifactId>
+    <description>dao模块</description>
+
+    <parent>
+        <artifactId>forecast</artifactId>
+        <groupId>cn.oleauto</groupId>
+        <version>${revision}</version>
+    </parent>
+
+
+    <dependencies>
+        <dependency>
+            <groupId>jakarta.servlet</groupId>
+            <artifactId>jakarta.servlet-api</artifactId>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>com.baomidou</groupId>
+            <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
+        </dependency>
+        <!-- 通用工具-->
+        <dependency>
+            <groupId>cn.oleauto</groupId>
+            <artifactId>forecast-common</artifactId>
+        </dependency>
+    </dependencies>
+
+</project>