pom.xml 4.0 KB

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