pom.xml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-webflux</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.alibaba.cloud</groupId>
  26. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  27. </dependency>
  28. <!--健康监控-->
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-actuator</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.jeecgframework.boot</groupId>
  35. <artifactId>jeecg-boot-base-core</artifactId>
  36. <exclusions>
  37. <exclusion>
  38. <groupId>org.jeecgframework.boot</groupId>
  39. <artifactId>hibernate-re</artifactId>
  40. </exclusion>
  41. </exclusions>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.jeecgframework.boot</groupId>
  45. <artifactId>jeecg-system-cloud-api</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>cn.afterturn</groupId>
  49. <artifactId>easypoi-web</artifactId>
  50. <version>3.2.0</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>cn.afterturn</groupId>
  54. <artifactId>easypoi-annotation</artifactId>
  55. <version>3.2.0</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.apache.poi</groupId>
  59. <artifactId>poi-ooxml</artifactId>
  60. <version>3.15</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.jeecgframework.boot</groupId>
  64. <artifactId>jeecg-boot-module-system</artifactId>
  65. </dependency>
  66. </dependencies>
  67. <build>
  68. <plugins>
  69. <plugin>
  70. <groupId>org.springframework.boot</groupId>
  71. <artifactId>spring-boot-maven-plugin</artifactId>
  72. </plugin>
  73. </plugins>
  74. <resources>
  75. <!-- 解决MyBatis配置文件引入问题 -->
  76. <resource>
  77. <directory>src/main/java</directory>
  78. <includes>
  79. <include>**/*.properties</include>
  80. <include>**/*.xml</include>
  81. </includes>
  82. <!-- 是否替换资源中的属性-->
  83. <filtering>true</filtering>
  84. </resource>
  85. <resource>
  86. <directory>src/main/resources</directory>
  87. <filtering>true</filtering>
  88. </resource>
  89. </resources>
  90. </build>
  91. <!-- 环境 -->
  92. <profiles>
  93. <!-- 开发 -->
  94. <profile>
  95. <id>dev</id>
  96. <properties>
  97. <activatedProperties>dev</activatedProperties>
  98. </properties>
  99. </profile>
  100. <!-- 测试 -->
  101. <profile>
  102. <id>test</id>
  103. <properties>
  104. <activatedProperties>test</activatedProperties>
  105. </properties>
  106. </profile>
  107. <!-- 生产 -->
  108. <profile>
  109. <id>prod</id>
  110. <properties>
  111. <activatedProperties>prod</activatedProperties>
  112. </properties>
  113. </profile>
  114. </profiles>
  115. </project>