pom.xml 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  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>autodop</artifactId>
  7. <groupId>cn.reghao.autodop</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>dmaster</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>cn.reghao.autodop</groupId>
  15. <artifactId>common</artifactId>
  16. <version>1.0.0</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-web</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-devtools</artifactId>
  25. <optional>true</optional>
  26. <scope>true</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-security</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-test</artifactId>
  35. <scope>test</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-actuator</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-cache</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.github.ben-manes.caffeine</groupId>
  47. <artifactId>caffeine</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>mysql</groupId>
  51. <artifactId>mysql-connector-java</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.zaxxer</groupId>
  55. <artifactId>HikariCP</artifactId>
  56. <version>3.3.1</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>io.springfox</groupId>
  60. <artifactId>springfox-swagger2</artifactId>
  61. <version>2.9.2</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>io.springfox</groupId>
  65. <artifactId>springfox-swagger-ui</artifactId>
  66. <version>2.9.2</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.aliyun.oss</groupId>
  70. <artifactId>aliyun-sdk-oss</artifactId>
  71. <version>2.8.3</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.apache.maven.shared</groupId>
  75. <artifactId>maven-invoker</artifactId>
  76. <version>3.0.1</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.tmatesoft.svnkit</groupId>
  80. <artifactId>svnkit</artifactId>
  81. <version>1.10.1</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.eclipse.jgit</groupId>
  85. <artifactId>org.eclipse.jgit</artifactId>
  86. <version>5.5.0.201909110433-r</version>
  87. </dependency>
  88. <!--<dependency>
  89. <groupId>com.jcraft</groupId>
  90. <artifactId>jsch</artifactId>
  91. <version>0.1.55</version>
  92. </dependency>-->
  93. <dependency>
  94. <groupId>io.jsonwebtoken</groupId>
  95. <artifactId>jjwt</artifactId>
  96. <version>0.9.1</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>net.java.dev.jna</groupId>
  100. <artifactId>jna</artifactId>
  101. <version>4.1.0</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.libvirt</groupId>
  105. <artifactId>libvirt</artifactId>
  106. <version>0.5.1</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.dom4j</groupId>
  110. <artifactId>dom4j</artifactId>
  111. <version>2.1.1</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>com.sun.mail</groupId>
  115. <artifactId>javax.mail</artifactId>
  116. <version>RELEASE</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.springframework.boot</groupId>
  120. <artifactId>spring-boot-starter-data-jpa</artifactId>
  121. </dependency>
  122. <dependency>
  123. <groupId>org.springframework.boot</groupId>
  124. <artifactId>spring-boot-starter-data-mongodb</artifactId>
  125. </dependency>
  126. <dependency>
  127. <groupId>org.springframework.boot</groupId>
  128. <artifactId>spring-boot-starter-websocket</artifactId>
  129. </dependency>
  130. </dependencies>
  131. <profiles>
  132. <profile>
  133. <id>dev</id>
  134. <properties>
  135. <profile.active>dev</profile.active>
  136. </properties>
  137. <activation>
  138. <activeByDefault>true</activeByDefault>
  139. </activation>
  140. </profile>
  141. <profile>
  142. <id>test</id>
  143. <properties>
  144. <profile.active>test</profile.active>
  145. </properties>
  146. </profile>
  147. <profile>
  148. <id>prod</id>
  149. <properties>
  150. <profile.active>prod</profile.active>
  151. </properties>
  152. </profile>
  153. </profiles>
  154. <build>
  155. <finalName>autodop-dmaster</finalName>
  156. <resources>
  157. <resource>
  158. <directory>src/main/resources</directory>
  159. <filtering>true</filtering>
  160. <includes>
  161. <include>application.yml</include>
  162. <include>application-${profile.active}.yml</include>
  163. <include>logback-spring.xml</include>
  164. </includes>
  165. </resource>
  166. </resources>
  167. <plugins>
  168. <plugin>
  169. <groupId>org.apache.maven.plugins</groupId>
  170. <artifactId>maven-compiler-plugin</artifactId>
  171. <configuration>
  172. <source>1.8</source>
  173. <target>1.8</target>
  174. </configuration>
  175. </plugin>
  176. <plugin>
  177. <groupId>org.springframework.boot</groupId>
  178. <artifactId>spring-boot-maven-plugin</artifactId>
  179. <configuration>
  180. <executable>true</executable>
  181. <fork>true</fork>
  182. </configuration>
  183. </plugin>
  184. </plugins>
  185. </build>
  186. </project>