pom.xml 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  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. <modelVersion>4.0.0</modelVersion>
  6. <groupId>uk.ac.ic.wlgitbridge</groupId>
  7. <artifactId>writelatex-git-bridge</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <properties>
  10. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  11. <!--<maven.test.skip>true</maven.test.skip>-->
  12. </properties>
  13. <build>
  14. <plugins>
  15. <!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-compiler-plugin -->
  16. <plugin>
  17. <artifactId>maven-compiler-plugin</artifactId>
  18. <version>3.7.0</version>
  19. <configuration>
  20. <source>1.8</source>
  21. <target>1.8</target>
  22. <compilerArgument></compilerArgument>
  23. </configuration>
  24. </plugin>
  25. <!-- Workaround, test loader crashes without this configuration option -->
  26. <!-- See: https://stackoverflow.com/questions/53010200/maven-surefire-could-not-find-forkedbooter-class -->
  27. <plugin>
  28. <groupId>org.apache.maven.plugins</groupId>
  29. <artifactId>maven-surefire-plugin</artifactId>
  30. <configuration>
  31. <argLine>-Djdk.net.URLClassPath.disableClassPathURLCheck=true</argLine>
  32. </configuration>
  33. </plugin>
  34. <!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-assembly-plugin -->
  35. <plugin>
  36. <artifactId>maven-assembly-plugin</artifactId>
  37. <version>3.1.0</version>
  38. <executions>
  39. <execution>
  40. <phase>package</phase>
  41. <goals>
  42. <goal>single</goal>
  43. </goals>
  44. </execution>
  45. </executions>
  46. <configuration>
  47. <archive>
  48. <manifest>
  49. <mainClass>uk.ac.ic.wlgitbridge.Main</mainClass>
  50. </manifest>
  51. </archive>
  52. <descriptorRefs>
  53. <descriptorRef>jar-with-dependencies</descriptorRef>
  54. </descriptorRefs>
  55. </configuration>
  56. </plugin>
  57. </plugins>
  58. </build>
  59. <dependencies>
  60. <!-- https://mvnrepository.com/artifact/junit/junit -->
  61. <dependency>
  62. <groupId>junit</groupId>
  63. <artifactId>junit</artifactId>
  64. <version>4.13.2</version>
  65. <scope>test</scope>
  66. </dependency>
  67. <!-- https://mvnrepository.com/artifact/org.jmock/jmock-junit4 -->
  68. <dependency>
  69. <groupId>org.jmock</groupId>
  70. <artifactId>jmock-junit4</artifactId>
  71. <version>2.8.4</version>
  72. <scope>test</scope>
  73. </dependency>
  74. <!-- https://mvnrepository.com/artifact/org.eclipse.jetty/jetty-servlet -->
  75. <dependency>
  76. <groupId>org.eclipse.jetty</groupId>
  77. <artifactId>jetty-servlet</artifactId>
  78. <version>9.4.38.v20210224</version>
  79. </dependency>
  80. <!-- https://mvnrepository.com/artifact/org.eclipse.jetty/jetty-server -->
  81. <dependency>
  82. <groupId>org.eclipse.jetty</groupId>
  83. <artifactId>jetty-server</artifactId>
  84. <version>9.4.38.v20210224</version>
  85. </dependency>
  86. <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
  87. <dependency>
  88. <groupId>com.google.code.gson</groupId>
  89. <artifactId>gson</artifactId>
  90. <version>2.9.0</version>
  91. </dependency>
  92. <!-- https://mvnrepository.com/artifact/org.asynchttpclient/async-http-client -->
  93. <dependency>
  94. <groupId>org.asynchttpclient</groupId>
  95. <artifactId>async-http-client</artifactId>
  96. <version>2.12.3</version>
  97. </dependency>
  98. <!-- https://mvnrepository.com/artifact/org.eclipse.jgit/org.eclipse.jgit -->
  99. <dependency>
  100. <groupId>org.eclipse.jgit</groupId>
  101. <artifactId>org.eclipse.jgit</artifactId>
  102. <version>5.12.0.202106070339-r</version>
  103. </dependency>
  104. <!-- https://mvnrepository.com/artifact/org.eclipse.jgit/org.eclipse.jgit.http.server -->
  105. <dependency>
  106. <groupId>org.eclipse.jgit</groupId>
  107. <artifactId>org.eclipse.jgit.http.server</artifactId>
  108. <version>5.12.0.202106070339-r</version>
  109. </dependency>
  110. <!-- https://mvnrepository.com/artifact/org.xerial/sqlite-jdbc -->
  111. <dependency>
  112. <groupId>org.xerial</groupId>
  113. <artifactId>sqlite-jdbc</artifactId>
  114. <version>3.36.0.1</version>
  115. </dependency>
  116. <!-- https://mvnrepository.com/artifact/joda-time/joda-time -->
  117. <dependency>
  118. <groupId>joda-time</groupId>
  119. <artifactId>joda-time</artifactId>
  120. <version>2.9.9</version>
  121. </dependency>
  122. <!-- https://mvnrepository.com/artifact/com.google.oauth-client/google-oauth-client -->
  123. <dependency>
  124. <groupId>com.google.oauth-client</groupId>
  125. <artifactId>google-oauth-client</artifactId>
  126. <version>1.23.0</version>
  127. </dependency>
  128. <!-- https://mvnrepository.com/artifact/com.google.http-client/google-http-client -->
  129. <dependency>
  130. <groupId>com.google.http-client</groupId>
  131. <artifactId>google-http-client</artifactId>
  132. <version>1.23.0</version>
  133. </dependency>
  134. <!-- https://mvnrepository.com/artifact/com.google.http-client/google-http-client-gson -->
  135. <dependency>
  136. <groupId>com.google.http-client</groupId>
  137. <artifactId>google-http-client-gson</artifactId>
  138. <version>1.23.0</version>
  139. </dependency>
  140. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
  141. <dependency>
  142. <groupId>org.apache.commons</groupId>
  143. <artifactId>commons-lang3</artifactId>
  144. <version>3.12.0</version>
  145. </dependency>
  146. <!-- https://mvnrepository.com/artifact/ch.qos.logback/logback-classic -->
  147. <dependency>
  148. <groupId>ch.qos.logback</groupId>
  149. <artifactId>logback-classic</artifactId>
  150. <version>1.2.3</version>
  151. </dependency>
  152. <!-- https://mvnrepository.com/artifact/com.google.guava/guava -->
  153. <dependency>
  154. <groupId>com.google.guava</groupId>
  155. <artifactId>guava</artifactId>
  156. <version>30.1.1-jre</version>
  157. </dependency>
  158. <!-- https://mvnrepository.com/artifact/org.mock-server/mockserver-netty -->
  159. <dependency>
  160. <groupId>org.mock-server</groupId>
  161. <artifactId>mockserver-netty</artifactId>
  162. <version>5.12.0</version>
  163. <scope>test</scope>
  164. </dependency>
  165. <!-- https://mvnrepository.com/artifact/org.mock-server/mockserver-junit-rule -->
  166. <dependency>
  167. <groupId>org.mock-server</groupId>
  168. <artifactId>mockserver-junit-rule</artifactId>
  169. <version>5.12.0</version>
  170. <scope>test</scope>
  171. </dependency>
  172. <!-- https://mvnrepository.com/artifact/org.mockito/mockito-core -->
  173. <dependency>
  174. <groupId>org.mockito</groupId>
  175. <artifactId>mockito-core</artifactId>
  176. <version>3.11.1</version>
  177. <scope>test</scope>
  178. </dependency>
  179. <!-- https://mvnrepository.com/artifact/com.amazonaws/aws-java-sdk -->
  180. <dependency>
  181. <groupId>com.amazonaws</groupId>
  182. <artifactId>aws-java-sdk</artifactId>
  183. <version>1.11.274</version>
  184. </dependency>
  185. <!-- API, java.xml.bind module -->
  186. <dependency>
  187. <groupId>jakarta.xml.bind</groupId>
  188. <artifactId>jakarta.xml.bind-api</artifactId>
  189. <version>2.3.2</version>
  190. </dependency>
  191. <!-- Runtime, com.sun.xml.bind module -->
  192. <dependency>
  193. <groupId>org.glassfish.jaxb</groupId>
  194. <artifactId>jaxb-runtime</artifactId>
  195. <version>2.3.2</version>
  196. </dependency>
  197. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
  198. <dependency>
  199. <groupId>org.apache.httpcomponents</groupId>
  200. <artifactId>httpclient</artifactId>
  201. <version>4.5.5</version>
  202. </dependency>
  203. <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
  204. <dependency>
  205. <groupId>commons-io</groupId>
  206. <artifactId>commons-io</artifactId>
  207. <version>2.10.0</version>
  208. </dependency>
  209. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-compress -->
  210. <dependency>
  211. <groupId>org.apache.commons</groupId>
  212. <artifactId>commons-compress</artifactId>
  213. <version>1.20</version>
  214. </dependency>
  215. <!-- prometheus metrics -->
  216. <dependency>
  217. <groupId>io.prometheus</groupId>
  218. <artifactId>simpleclient</artifactId>
  219. <version>0.10.0</version>
  220. </dependency>
  221. <!-- Hotspot JVM metrics -->
  222. <dependency>
  223. <groupId>io.prometheus</groupId>
  224. <artifactId>simpleclient_hotspot</artifactId>
  225. <version>0.10.0</version>
  226. </dependency>
  227. <!-- Expose metrics via a servlet -->
  228. <dependency>
  229. <groupId>io.prometheus</groupId>
  230. <artifactId>simpleclient_servlet</artifactId>
  231. <version>0.10.0</version>
  232. </dependency>
  233. </dependencies>
  234. </project>