pom.xml 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. <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">
  2. <modelVersion>4.0.0</modelVersion>
  3. <parent>
  4. <groupId>com.ssj</groupId>
  5. <artifactId>ssj</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. </parent>
  8. <artifactId>ssj-sys</artifactId>
  9. <packaging>war</packaging>
  10. <name>ssj-sys</name>
  11. <description>sys</description>
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. <elasticsearch.version>7.2.0</elasticsearch.version>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.ssj</groupId>
  19. <artifactId>ssj-kmt-exercise-service</artifactId>
  20. <version>0.0.1-SNAPSHOT</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.ssj</groupId>
  24. <artifactId>ssj-aijia-service</artifactId>
  25. <version>0.0.1-SNAPSHOT</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.ssj</groupId>
  29. <artifactId>ssj-sys-service</artifactId>
  30. <version>0.0.1-SNAPSHOT</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.ssj</groupId>
  34. <artifactId>ssj-dao</artifactId>
  35. <version>0.0.1-SNAPSHOT</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.ssj</groupId>
  39. <artifactId>ssj-mybatis-service-impl</artifactId>
  40. <version>0.0.1-SNAPSHOT</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.ssj</groupId>
  44. <artifactId>ssj-common-rabbitmq</artifactId>
  45. <version>0.0.1-SNAPSHOT</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.ssj</groupId>
  49. <artifactId>ssj-common-baidu-aipface</artifactId>
  50. <version>0.0.1-SNAPSHOT</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.ssj</groupId>
  54. <artifactId>ssj-common-weixin</artifactId>
  55. <version>0.0.1-SNAPSHOT</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.ssj</groupId>
  59. <artifactId>ssj-common-weixin-pay</artifactId>
  60. <version>0.0.1-SNAPSHOT</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.ssj</groupId>
  64. <artifactId>ssj-common-aliyun-sms</artifactId>
  65. <version>0.0.1-SNAPSHOT</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.ssj</groupId>
  69. <artifactId>ssj-common-alipay</artifactId>
  70. <version>0.0.1-SNAPSHOT</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.ssj</groupId>
  74. <artifactId>ssj-common-easemob</artifactId>
  75. <version>0.0.1-SNAPSHOT</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.ssj</groupId>
  79. <artifactId>ssj-common-xunfei</artifactId>
  80. <version>0.0.1-SNAPSHOT</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.ssj</groupId>
  84. <artifactId>ssj-common-jiguang</artifactId>
  85. <version>0.0.1-SNAPSHOT</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>com.ssj</groupId>
  89. <artifactId>ssj-common-cmb</artifactId>
  90. <version>0.0.1-SNAPSHOT</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>com.ssj</groupId>
  94. <artifactId>ssj-common-config</artifactId>
  95. <version>0.0.1-SNAPSHOT</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>com.ssj</groupId>
  99. <artifactId>ssj-common-file</artifactId>
  100. </dependency>
  101. <dependency>
  102. <groupId>com.ssj</groupId>
  103. <artifactId>ssj-common-excel</artifactId>
  104. <version>0.0.1-SNAPSHOT</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>com.ssj</groupId>
  108. <artifactId>ssj-common-file</artifactId>
  109. <version>0.0.1-SNAPSHOT</version>
  110. </dependency>
  111. <!-- <dependency>-->
  112. <!-- <groupId>org.apache.dubbo</groupId>-->
  113. <!-- <artifactId>dubbo-registry-nacos</artifactId>-->
  114. <!-- <version>2.7.5</version>-->
  115. <!-- </dependency>-->
  116. <!-- <dependency>-->
  117. <!-- <groupId>com.alibaba.nacos</groupId>-->
  118. <!-- <artifactId>nacos-client</artifactId>-->
  119. <!-- <version>1.1.4</version>-->
  120. <!-- </dependency>-->
  121. </dependencies>
  122. <!-- Package as an executable jar -->
  123. <build>
  124. <!-- 产生的构件的文件名,默认值是${artifactId}-${version}。 -->
  125. <finalName>${project.artifactId}</finalName>
  126. <resources>
  127. <resource>
  128. <directory>src/main/resources/</directory>
  129. <filtering>true</filtering>
  130. <includes>
  131. <include>**/*.properties</include>
  132. </includes>
  133. </resource>
  134. <resource>
  135. <directory>src/main/resources</directory>
  136. <includes>
  137. <include>**.*</include>
  138. <include>**/*.*</include><!-- i18n能读取到 -->
  139. <include>**/*/*.*</include>
  140. </includes>
  141. </resource>
  142. </resources>
  143. <plugins>
  144. <plugin>
  145. <artifactId>maven-resources-plugin</artifactId>
  146. <configuration>
  147. <encoding>utf-8</encoding>
  148. <useDefaultDelimiters>true</useDefaultDelimiters>
  149. </configuration>
  150. </plugin>
  151. </plugins>
  152. </build>
  153. <profiles>
  154. <profile>
  155. <id>test</id>
  156. <properties>
  157. <!-- 环境标识,需要与配置文件的名称相对应 -->
  158. <activatedProperties>test</activatedProperties>
  159. </properties>
  160. </profile>
  161. </profiles>
  162. </project>