|
@@ -0,0 +1,70 @@
|
|
|
|
+<?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>2.4.5</version>
|
|
|
|
+ </parent>
|
|
|
|
+ <modelVersion>4.0.0</modelVersion>
|
|
|
|
+<!--
|
|
|
|
+ <groupId>org.jeecg.framework.boot</groupId>-->
|
|
|
|
+ <artifactId>jeecg-boot-finance</artifactId>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ <dependencies>
|
|
|
|
+ <!--引入微服务启动依赖 starter-->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.jeecgframework.boot</groupId>
|
|
|
|
+ <artifactId>jeecg-boot-starter-cloud</artifactId>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.jeecgframework.boot</groupId>
|
|
|
|
+ <artifactId>jeecg-boot-base-core</artifactId>
|
|
|
|
+ <exclusions>
|
|
|
|
+ <exclusion>
|
|
|
|
+ <groupId>org.jeecgframework.boot</groupId>
|
|
|
|
+ <artifactId>hibernate-re</artifactId>
|
|
|
|
+ </exclusion>
|
|
|
|
+ </exclusions>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.jeecgframework.boot</groupId>
|
|
|
|
+ <artifactId>jeecg-system-local-api</artifactId>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ </dependencies>
|
|
|
|
+
|
|
|
|
+ <build>
|
|
|
|
+ <plugins>
|
|
|
|
+ <plugin>
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
+ <artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
+ </plugin>
|
|
|
|
+ </plugins>
|
|
|
|
+ <resources>
|
|
|
|
+ <!-- 解决MyBatis配置文件引入问题 -->
|
|
|
|
+ <resource>
|
|
|
|
+ <directory>src/main/java</directory>
|
|
|
|
+ <includes>
|
|
|
|
+ <include>**/*.properties</include>
|
|
|
|
+ <include>**/*.xml</include>
|
|
|
|
+ </includes>
|
|
|
|
+ <!-- 是否替换资源中的属性-->
|
|
|
|
+ <filtering>true</filtering>
|
|
|
|
+ </resource>
|
|
|
|
+ <resource>
|
|
|
|
+ <directory>src/main/resources</directory>
|
|
|
|
+ <filtering>true</filtering>
|
|
|
|
+ </resource>
|
|
|
|
+ </resources>
|
|
|
|
+ </build>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+</project>
|