|
@@ -10,10 +10,67 @@
|
|
</parent>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>fm-common</artifactId>
|
|
<artifactId>fm-common</artifactId>
|
|
|
|
+
|
|
|
|
+ <properties>
|
|
|
|
+ <mybatis-plus.version>3.3.0</mybatis-plus.version>
|
|
|
|
+ <druid-spring-boot-starter.version>1.1.22</druid-spring-boot-starter.version>
|
|
|
|
+ <mapstruct.version>1.2.0.Final</mapstruct.version>
|
|
|
|
+ </properties>
|
|
|
|
+
|
|
<dependencies>
|
|
<dependencies>
|
|
|
|
+ <!-- 集成框架工具类 -->
|
|
<dependency>
|
|
<dependency>
|
|
<groupId>com.persagy</groupId>
|
|
<groupId>com.persagy</groupId>
|
|
<artifactId>integrated-common-core</artifactId>
|
|
<artifactId>integrated-common-core</artifactId>
|
|
</dependency>
|
|
</dependency>
|
|
|
|
+
|
|
|
|
+ <!-- web -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
+ <artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <!-- mybatisPlus相关的依赖 start -->
|
|
|
|
+ <!-- mybatisPlus -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.baomidou</groupId>
|
|
|
|
+ <artifactId>mybatis-plus-boot-starter</artifactId>
|
|
|
|
+ <version>${mybatis-plus.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <!-- jackson -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
+ <artifactId>jackson-annotations</artifactId>
|
|
|
|
+ <version>2.11.3</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <!-- google工具类(easyCode模板中使用到了其中的方法) -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.google.guava</groupId>
|
|
|
|
+ <artifactId>guava</artifactId>
|
|
|
|
+ <version>28.0-jre</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <!-- mysql -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>mysql</groupId>
|
|
|
|
+ <artifactId>mysql-connector-java</artifactId>
|
|
|
|
+ </dependency>
|
|
|
|
+ <!-- alibaba druid -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
|
+ <artifactId>druid-spring-boot-starter</artifactId>
|
|
|
|
+ <version>${druid-spring-boot-starter.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <!-- mapstruct 优雅的进行bean与dto的转换 -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.mapstruct</groupId>
|
|
|
|
+ <artifactId>mapstruct-jdk8</artifactId>
|
|
|
|
+ <version>${mapstruct.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.mapstruct</groupId>
|
|
|
|
+ <artifactId>mapstruct-processor</artifactId>
|
|
|
|
+ <version>${mapstruct.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <!-- mybatisPlus相关的依赖 end -->
|
|
</dependencies>
|
|
</dependencies>
|
|
</project>
|
|
</project>
|