pom.xml 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>jeecg-boot-parent</artifactId>
  7. <groupId>org.jeecgframework.boot</groupId>
  8. <version>2.4.5</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <!--
  12. <groupId>org.jeecg.framework.boot</groupId>-->
  13. <artifactId>jeecg-boot-finance</artifactId>
  14. <dependencies>
  15. <!--引入微服务启动依赖 starter-->
  16. <dependency>
  17. <groupId>org.jeecgframework.boot</groupId>
  18. <artifactId>jeecg-boot-starter-cloud</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.jeecgframework.boot</groupId>
  22. <artifactId>jeecg-boot-base-core</artifactId>
  23. <exclusions>
  24. <exclusion>
  25. <groupId>org.jeecgframework.boot</groupId>
  26. <artifactId>hibernate-re</artifactId>
  27. </exclusion>
  28. </exclusions>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.jeecgframework.boot</groupId>
  32. <artifactId>jeecg-system-local-api</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>cn.afterturn</groupId>
  36. <artifactId>easypoi-web</artifactId>
  37. <version>3.2.0</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>cn.afterturn</groupId>
  41. <artifactId>easypoi-annotation</artifactId>
  42. <version>3.2.0</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.apache.poi</groupId>
  46. <artifactId>poi-ooxml</artifactId>
  47. <version>3.15</version>
  48. </dependency>
  49. </dependencies>
  50. <build>
  51. <plugins>
  52. <plugin>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-maven-plugin</artifactId>
  55. </plugin>
  56. </plugins>
  57. <resources>
  58. <!-- 解决MyBatis配置文件引入问题 -->
  59. <resource>
  60. <directory>src/main/java</directory>
  61. <includes>
  62. <include>**/*.properties</include>
  63. <include>**/*.xml</include>
  64. </includes>
  65. <!-- 是否替换资源中的属性-->
  66. <filtering>true</filtering>
  67. </resource>
  68. <resource>
  69. <directory>src/main/resources</directory>
  70. <filtering>true</filtering>
  71. </resource>
  72. </resources>
  73. </build>
  74. </project>