pom.xml 6.2 KB

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