pom.xml 5.3 KB

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