pom.xml 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <groupId>easydo.technology</groupId>
  6. <artifactId>easydo</artifactId>
  7. <version>v20220507</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>easydo-chengfa</artifactId>
  11. <name>城发投资</name>
  12. <packaging>jar</packaging>
  13. <properties>
  14. <jjwt.version>0.11.1</jjwt.version>
  15. <jna.version>5.5.0</jna.version>
  16. <shiro.version>1.2.4</shiro.version>
  17. </properties>
  18. <profiles>
  19. <profile>
  20. <!--不同环境Profile的唯一id-->
  21. <id>dev</id>
  22. <!--默认激活dev 环境-->
  23. <activation>
  24. <activeByDefault>true</activeByDefault>
  25. </activation>
  26. <properties>
  27. <!--environment是自定义的字段(名字随便起),自定义字段可以有多个,确保与配置文件一致-->
  28. <environment>dev</environment>
  29. </properties>
  30. </profile>
  31. <profile>
  32. <id>prod</id>
  33. <activation>
  34. <activeByDefault>false</activeByDefault>
  35. </activation>
  36. <properties>
  37. <environment>prod</environment>
  38. </properties>
  39. </profile>
  40. <profile>
  41. <id>test</id>
  42. <activation>
  43. <activeByDefault>false</activeByDefault>
  44. </activation>
  45. <properties>
  46. <environment>test</environment>
  47. </properties>
  48. </profile>
  49. </profiles>
  50. <dependencies>
  51. <dependency>
  52. <groupId>easydo.technology</groupId>
  53. <artifactId>easydo-system</artifactId>
  54. <version>v20220507</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>commons-fileupload</groupId>
  58. <artifactId>commons-fileupload</artifactId>
  59. <version>1.4</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.baomidou</groupId>
  63. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  64. <version>3.5.0</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.oracle.database.jdbc</groupId>
  68. <artifactId>ojdbc8</artifactId>
  69. <version>19.3.0.0</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.quartz-scheduler</groupId>
  73. <artifactId>quartz</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>cn.hutool</groupId>
  77. <artifactId>hutool-core</artifactId>
  78. <version>5.8.24</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.springframework.kafka</groupId>
  82. <artifactId>spring-kafka</artifactId>
  83. <version>2.2.0.RELEASE</version>
  84. </dependency>
  85. <!-- 用于日志切面中,以 json 格式打印出入参 -->
  86. <dependency>
  87. <groupId>com.google.code.gson</groupId>
  88. <artifactId>gson</artifactId>
  89. <version>2.8.5</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.springframework.boot</groupId>
  93. <artifactId>spring-boot-starter-json</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>cn.hutool</groupId>
  97. <artifactId>hutool-all</artifactId>
  98. <version>5.3.10</version>
  99. </dependency>
  100. <!-- <dependency>
  101. <groupId>org.elasticsearch.client</groupId>
  102. <artifactId>elasticsearch-rest-high-level-client</artifactId>
  103. <version>6.2.2</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.elasticsearch.client</groupId>
  107. <artifactId>elasticsearch-rest-client</artifactId>
  108. <version>6.2.2</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.elasticsearch</groupId>
  112. <artifactId>elasticsearch</artifactId>
  113. <version>6.2.2</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.apache.rocketmq</groupId>
  117. <artifactId>rocketmq-client</artifactId>
  118. <version>5.3.0</version>
  119. </dependency> -->
  120. </dependencies>
  121. <!-- 打包 -->
  122. <build>
  123. <resources>
  124. <resource>
  125. <directory>src/main/resources</directory>
  126. <includes>
  127. <include>**/*.yml</include>
  128. <include>**/*.properties</include>
  129. <include>**/*.xml</include>
  130. </includes>
  131. <filtering>true</filtering>
  132. </resource>
  133. <resource>
  134. <directory>src/main/java</directory>
  135. <includes>
  136. <include>**/*.yml</include>
  137. <include>**/*.properties</include>
  138. <include>**/*.xml</include>
  139. </includes>
  140. <filtering>true</filtering>
  141. </resource>
  142. </resources>
  143. <plugins>
  144. <plugin>
  145. <groupId>org.springframework.boot</groupId>
  146. <artifactId>spring-boot-maven-plugin</artifactId>
  147. </plugin>
  148. <plugin>
  149. <groupId>org.apache.maven.plugins</groupId>
  150. <artifactId>maven-surefire-plugin</artifactId>
  151. <configuration>
  152. <skipTests>true</skipTests>
  153. </configuration>
  154. </plugin>
  155. </plugins>
  156. </build>
  157. </project>