Blame view

fw-valhalla-dao/pom.xml 1.27 KB
3f17473a   张志伟   init
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
  <?xml version="1.0" encoding="UTF-8"?>
  <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
           xmlns="http://maven.apache.org/POM/4.0.0"
           xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
      <parent>
          <artifactId>fw-valhalla</artifactId>
          <groupId>cn.fw</groupId>
          <version>1.0.0</version>
          <relativePath>../pom.xml</relativePath>
      </parent>
      <modelVersion>4.0.0</modelVersion>
      <packaging>jar</packaging>
      <artifactId>fw-valhalla-dao</artifactId>
  
      <dependencies>
          <!-- mybatis -->
          <dependency>
              <groupId>com.baomidou</groupId>
              <artifactId>mybatis-plus-core</artifactId>
              <optional>true</optional>
          </dependency>
          <dependency>
              <groupId>com.baomidou</groupId>
              <artifactId>mybatis-plus-extension</artifactId>
              <optional>true</optional>
          </dependency>
          <!-- fw -->
          <dependency>
              <groupId>cn.fw</groupId>
              <artifactId>fw-valhalla-domain</artifactId>
          </dependency>
          <dependency>
              <groupId>cn.fw</groupId>
              <artifactId>fw-valhalla-common</artifactId>
          </dependency>
      </dependencies>
  
3f17473a   张志伟   init
38
  </project>