overleaf/services/git-bridge/pom.xml

217 lines
9.1 KiB
XML
Raw Normal View History

2015-01-09 02:21:13 -05:00
<?xml version="1.0" encoding="UTF-8"?>
<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">
<modelVersion>4.0.0</modelVersion>
2015-02-22 17:49:02 -05:00
<groupId>uk.ac.ic.wlgitbridge</groupId>
2015-01-09 02:21:13 -05:00
<artifactId>writelatex-git-bridge</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2018-11-27 11:24:40 -05:00
<!--<maven.test.skip>true</maven.test.skip>-->
2015-01-09 02:21:13 -05:00
</properties>
<build>
<plugins>
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-compiler-plugin -->
2015-01-11 06:46:13 -05:00
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
2015-01-11 06:46:13 -05:00
<configuration>
<source>1.8</source>
<target>1.8</target>
2015-01-11 06:46:13 -05:00
<compilerArgument></compilerArgument>
</configuration>
</plugin>
2018-11-30 11:13:33 -05:00
<!-- Workaround, test loader crashes without this configuration option -->
<!-- See: https://stackoverflow.com/questions/53010200/maven-surefire-could-not-find-forkedbooter-class -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>-Djdk.net.URLClassPath.disableClassPathURLCheck=true</argLine>
</configuration>
2015-01-11 06:46:13 -05:00
</plugin>
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-assembly-plugin -->
2015-01-09 02:21:13 -05:00
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.1.0</version>
2015-01-09 02:21:13 -05:00
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
<configuration>
<archive>
<manifest>
<mainClass>uk.ac.ic.wlgitbridge.Main</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<!-- https://mvnrepository.com/artifact/junit/junit -->
2015-01-09 02:21:13 -05:00
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
2015-01-09 02:21:13 -05:00
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/org.jmock/jmock-junit4 -->
2015-01-09 02:21:13 -05:00
<dependency>
<groupId>org.jmock</groupId>
<artifactId>jmock-junit4</artifactId>
<version>2.8.4</version>
<scope>test</scope>
2015-01-09 02:21:13 -05:00
</dependency>
<!-- https://mvnrepository.com/artifact/org.eclipse.jetty/jetty-servlet -->
2015-01-09 02:21:13 -05:00
<dependency>
2016-06-02 06:57:04 -04:00
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlet</artifactId>
<version>9.4.8.v20171121</version>
2016-06-02 06:57:04 -04:00
</dependency>
<!-- https://mvnrepository.com/artifact/org.eclipse.jetty/jetty-server -->
2016-06-02 06:57:04 -04:00
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
<version>9.4.8.v20171121</version>
2015-01-09 02:21:13 -05:00
</dependency>
<!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
2015-01-09 02:21:13 -05:00
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.2</version>
2015-01-09 02:21:13 -05:00
</dependency>
<!-- https://mvnrepository.com/artifact/org.asynchttpclient/async-http-client -->
2015-01-09 02:21:13 -05:00
<dependency>
<groupId>org.asynchttpclient</groupId>
2015-01-09 02:21:13 -05:00
<artifactId>async-http-client</artifactId>
<version>2.3.0</version>
2015-01-09 02:21:13 -05:00
</dependency>
<!-- https://mvnrepository.com/artifact/org.eclipse.jgit/org.eclipse.jgit -->
2015-01-09 02:21:13 -05:00
<dependency>
<groupId>org.eclipse.jgit</groupId>
<artifactId>org.eclipse.jgit</artifactId>
2020-09-22 09:46:16 -04:00
<version>5.9.0.202009080501-r</version>
2015-01-09 02:21:13 -05:00
</dependency>
<!-- https://mvnrepository.com/artifact/org.eclipse.jgit/org.eclipse.jgit.http.server -->
2015-01-09 02:21:13 -05:00
<dependency>
<groupId>org.eclipse.jgit</groupId>
<artifactId>org.eclipse.jgit.http.server</artifactId>
2020-09-22 09:46:16 -04:00
<version>5.9.0.202009080501-r</version>
2015-01-09 02:21:13 -05:00
</dependency>
<!-- https://mvnrepository.com/artifact/org.xerial/sqlite-jdbc -->
2015-01-09 02:21:13 -05:00
<dependency>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
<version>3.21.0.1</version>
2015-01-09 02:21:13 -05:00
</dependency>
<!-- https://mvnrepository.com/artifact/joda-time/joda-time -->
2015-03-09 17:38:53 -04:00
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>2.9.9</version>
2015-03-09 17:38:53 -04:00
</dependency>
<!-- https://mvnrepository.com/artifact/com.google.oauth-client/google-oauth-client -->
2015-10-25 07:19:02 -04:00
<dependency>
<groupId>com.google.oauth-client</groupId>
<artifactId>google-oauth-client</artifactId>
<version>1.23.0</version>
2015-10-25 07:19:02 -04:00
</dependency>
<!-- https://mvnrepository.com/artifact/com.google.http-client/google-http-client -->
2015-10-25 07:19:02 -04:00
<dependency>
<groupId>com.google.http-client</groupId>
<artifactId>google-http-client</artifactId>
<version>1.23.0</version>
2015-10-25 07:19:02 -04:00
</dependency>
<!-- https://mvnrepository.com/artifact/com.google.http-client/google-http-client-gson -->
2015-10-25 07:19:02 -04:00
<dependency>
<groupId>com.google.http-client</groupId>
<artifactId>google-http-client-gson</artifactId>
<version>1.23.0</version>
2015-10-25 07:19:02 -04:00
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
2015-10-25 07:19:02 -04:00
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.7</version>
2015-10-25 07:19:02 -04:00
</dependency>
<!-- https://mvnrepository.com/artifact/ch.qos.logback/logback-classic -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.2.3</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.google.guava/guava -->
2016-04-05 15:39:36 -04:00
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>24.0-jre</version>
2016-04-05 15:39:36 -04:00
</dependency>
<!-- https://mvnrepository.com/artifact/org.mock-server/mockserver-netty -->
<dependency>
<groupId>org.mock-server</groupId>
<artifactId>mockserver-netty</artifactId>
<version>5.3.0</version>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/org.mockito/mockito-core -->
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
2021-06-21 06:12:39 -04:00
<version>3.11.1</version>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/com.amazonaws/aws-java-sdk -->
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk</artifactId>
<version>1.11.274</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.5</version>
</dependency>
<!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.6</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-compress -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<version>1.15</version>
</dependency>
2021-06-21 12:11:49 -04:00
<!-- prometheus metrics -->
<dependency>
<groupId>io.prometheus</groupId>
<artifactId>simpleclient</artifactId>
<version>0.10.0</version>
</dependency>
<!-- Hotspot JVM metrics -->
<dependency>
<groupId>io.prometheus</groupId>
<artifactId>simpleclient_hotspot</artifactId>
<version>0.10.0</version>
</dependency>
<!-- Expose metrics via a servlet -->
<dependency>
<groupId>io.prometheus</groupId>
<artifactId>simpleclient_servlet</artifactId>
<version>0.10.0</version>
</dependency>
2015-01-09 02:21:13 -05:00
</dependencies>
</project>