pom.xml 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <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">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.moekr</groupId>
  5. <artifactId>moocoder-backend</artifactId>
  6. <version>0.4.5</version>
  7. <packaging>jar</packaging>
  8. <parent>
  9. <groupId>org.springframework.boot</groupId>
  10. <artifactId>spring-boot-starter-parent</artifactId>
  11. <version>2.0.0.RELEASE</version>
  12. </parent>
  13. <properties>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. <java.version>1.8</java.version>
  16. <skipTests>true</skipTests>
  17. </properties>
  18. <dependencies>
  19. <!-- Spring Boot Auto-Configurable Dependencies -->
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-data-jpa</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-jdbc</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-validation</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-web</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-security</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-cache</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-actuator</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-starter-mail</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-configuration-processor</artifactId>
  63. </dependency>
  64. <!-- Hibernate Dependencies -->
  65. <dependency>
  66. <groupId>org.hibernate</groupId>
  67. <artifactId>hibernate-java8</artifactId>
  68. </dependency>
  69. <!-- Apache Commons Dependencies -->
  70. <dependency>
  71. <groupId>org.apache.commons</groupId>
  72. <artifactId>commons-lang3</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>commons-codec</groupId>
  76. <artifactId>commons-codec</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.apache.commons</groupId>
  80. <artifactId>commons-compress</artifactId>
  81. <version>1.16.1</version>
  82. </dependency>
  83. <!-- Api Dependencies -->
  84. <dependency>
  85. <groupId>org.gitlab4j</groupId>
  86. <artifactId>gitlab4j-api</artifactId>
  87. <version>4.8.7</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.offbytwo.jenkins</groupId>
  91. <artifactId>jenkins-client</artifactId>
  92. <version>0.3.7</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>com.spotify</groupId>
  96. <artifactId>docker-client</artifactId>
  97. <version>8.11.2</version>
  98. </dependency>
  99. <!-- Utility Dependencies -->
  100. <dependency>
  101. <groupId>org.json</groupId>
  102. <artifactId>json</artifactId>
  103. <version>20180130</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.eclipse.jgit</groupId>
  107. <artifactId>org.eclipse.jgit</artifactId>
  108. <version>4.11.0.201803080745-r</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.zeroturnaround</groupId>
  112. <artifactId>zt-zip</artifactId>
  113. <version>1.12</version>
  114. </dependency>
  115. <!-- Storage Provider Dependencies -->
  116. <dependency>
  117. <groupId>com.aliyun.oss</groupId>
  118. <artifactId>aliyun-sdk-oss</artifactId>
  119. <version>3.1.0</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>com.qiniu</groupId>
  123. <artifactId>qiniu-java-sdk</artifactId>
  124. <version>7.2.11</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>com.qcloud</groupId>
  128. <artifactId>cos_api</artifactId>
  129. <version>5.4.1</version>
  130. <exclusions>
  131. <exclusion>
  132. <groupId>org.slf4j</groupId>
  133. <artifactId>slf4j-log4j12</artifactId>
  134. </exclusion>
  135. </exclusions>
  136. </dependency>
  137. <!-- WebJars Dependencies -->
  138. <dependency>
  139. <groupId>org.webjars</groupId>
  140. <artifactId>webjars-locator</artifactId>
  141. <version>0.34</version>
  142. </dependency>
  143. <dependency>
  144. <groupId>org.webjars</groupId>
  145. <artifactId>jquery</artifactId>
  146. <version>3.2.1</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>org.webjars</groupId>
  150. <artifactId>bootstrap</artifactId>
  151. <version>3.3.7</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>org.webjars</groupId>
  155. <artifactId>font-awesome</artifactId>
  156. <version>4.7.0</version>
  157. </dependency>
  158. <dependency>
  159. <groupId>cn.seecoder</groupId>
  160. <artifactId>seecoder-frontend-webjars</artifactId>
  161. <version>0.1.6</version>
  162. </dependency>
  163. <!-- Database Driver Dependencies -->
  164. <dependency>
  165. <groupId>mysql</groupId>
  166. <artifactId>mysql-connector-java</artifactId>
  167. <scope>runtime</scope>
  168. </dependency>
  169. <!-- Lombok Dependencies -->
  170. <dependency>
  171. <groupId>org.projectlombok</groupId>
  172. <artifactId>lombok</artifactId>
  173. <scope>provided</scope>
  174. </dependency>
  175. <!-- Test Dependencies -->
  176. <dependency>
  177. <groupId>org.springframework.boot</groupId>
  178. <artifactId>spring-boot-starter-test</artifactId>
  179. <scope>test</scope>
  180. </dependency>
  181. <dependency>
  182. <groupId>junit</groupId>
  183. <artifactId>junit</artifactId>
  184. <scope>test</scope>
  185. </dependency>
  186. </dependencies>
  187. <build>
  188. <plugins>
  189. <plugin>
  190. <groupId>org.springframework.boot</groupId>
  191. <artifactId>spring-boot-maven-plugin</artifactId>
  192. </plugin>
  193. </plugins>
  194. </build>
  195. <distributionManagement>
  196. <repository>
  197. <id>nexus-snapshots</id>
  198. <url>${nexus.snapshotsRepo}</url>
  199. </repository>
  200. </distributionManagement>
  201. </project>