| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275 |
- <?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>
- <groupId>uk.ac.ic.wlgitbridge</groupId>
- <artifactId>writelatex-git-bridge</artifactId>
- <version>1.0-SNAPSHOT</version>
- <properties>
- <java.version>21</java.version>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <maven.compiler.plugin.version>3.13.0</maven.compiler.plugin.version>
- <maven.surefire.plugin.version>2.12.4</maven.surefire.plugin.version>
- <maven.assembly.plugin.version>3.1.0</maven.assembly.plugin.version>
- <fmt.plugin.version>2.23</fmt.plugin.version>
- <junit.version>4.13.2</junit.version>
- <jmock.junit4.version>2.13.1</jmock.junit4.version>
- <jetty.servlet.version>9.4.57.v20241219</jetty.servlet.version>
- <gson.version>2.13.2</gson.version>
- <async.http.client.version>3.0.3</async.http.client.version>
- <jgit.version>6.10.1.202505221210-r</jgit.version>
- <sqlite.jdbc.version>3.41.2.2</sqlite.jdbc.version>
- <joda.time.version>2.9.9</joda.time.version>
- <google.oauth.client.version>1.39.0</google.oauth.client.version>
- <google.http.client.version>1.23.0</google.http.client.version>
- <commons.lang3.version>3.19.0</commons.lang3.version>
- <logback.classic.version>1.5.20</logback.classic.version>
- <mockserver.version>5.15.0</mockserver.version>
- <mockito.version>5.20.0</mockito.version>
- <aws.java.sdk.version>1.12.793</aws.java.sdk.version>
- <jakarta.xml.bind.api.version>${jaxb.runtime.version}</jakarta.xml.bind.api.version>
- <jaxb.runtime.version>2.3.2</jaxb.runtime.version>
- <httpclient.version>4.5.14</httpclient.version>
- <commons.io.version>2.20.0</commons.io.version>
- <commons.compress.version>1.28.0</commons.compress.version>
- <simpleclient.version>0.10.0</simpleclient.version>
- <bouncycastle.crypto.version>1.82</bouncycastle.crypto.version>
- </properties>
- <build>
- <plugins>
- <!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-compiler-plugin -->
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>${maven.compiler.plugin.version}</version>
- <configuration>
- <source>${java.version}</source>
- <target>${java.version}</target>
- <release>${java.version}</release>
- </configuration>
- </plugin>
- <!-- 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>
- <version>${maven.surefire.plugin.version}</version>
- <configuration>
- <argLine>-Djdk.net.URLClassPath.disableClassPathURLCheck=true</argLine>
- </configuration>
- </plugin>
- <!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-assembly-plugin -->
- <plugin>
- <artifactId>maven-assembly-plugin</artifactId>
- <version>${maven.assembly.plugin.version}</version>
- <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>
- <plugin>
- <groupId>com.spotify.fmt</groupId>
- <artifactId>fmt-maven-plugin</artifactId>
- <version>${fmt.plugin.version}</version>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <!-- https://mvnrepository.com/artifact/junit/junit -->
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>${junit.version}</version>
- <scope>test</scope>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.jmock/jmock-junit4 -->
- <dependency>
- <groupId>org.jmock</groupId>
- <artifactId>jmock-junit4</artifactId>
- <version>${jmock.junit4.version}</version>
- <scope>test</scope>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.eclipse.jetty/jetty-servlet -->
- <dependency>
- <groupId>org.eclipse.jetty</groupId>
- <artifactId>jetty-servlet</artifactId>
- <version>${jetty.servlet.version}</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.eclipse.jetty/jetty-server -->
- <dependency>
- <groupId>org.eclipse.jetty</groupId>
- <artifactId>jetty-server</artifactId>
- <version>${jetty.servlet.version}</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
- <dependency>
- <groupId>com.google.code.gson</groupId>
- <artifactId>gson</artifactId>
- <version>${gson.version}</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.asynchttpclient/async-http-client -->
- <dependency>
- <groupId>org.asynchttpclient</groupId>
- <artifactId>async-http-client</artifactId>
- <version>${async.http.client.version}</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.eclipse.jgit/org.eclipse.jgit -->
- <dependency>
- <groupId>org.eclipse.jgit</groupId>
- <artifactId>org.eclipse.jgit</artifactId>
- <version>${jgit.version}</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.eclipse.jgit/org.eclipse.jgit.http.server -->
- <dependency>
- <groupId>org.eclipse.jgit</groupId>
- <artifactId>org.eclipse.jgit.http.server</artifactId>
- <version>${jgit.version}</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.xerial/sqlite-jdbc -->
- <dependency>
- <groupId>org.xerial</groupId>
- <artifactId>sqlite-jdbc</artifactId>
- <version>${sqlite.jdbc.version}</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/joda-time/joda-time -->
- <dependency>
- <groupId>joda-time</groupId>
- <artifactId>joda-time</artifactId>
- <version>${joda.time.version}</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/com.google.oauth-client/google-oauth-client -->
- <dependency>
- <groupId>com.google.oauth-client</groupId>
- <artifactId>google-oauth-client</artifactId>
- <version>${google.oauth.client.version}</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/com.google.http-client/google-http-client -->
- <dependency>
- <groupId>com.google.http-client</groupId>
- <artifactId>google-http-client</artifactId>
- <version>${google.http.client.version}</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/com.google.http-client/google-http-client-gson -->
- <dependency>
- <groupId>com.google.http-client</groupId>
- <artifactId>google-http-client-gson</artifactId>
- <version>${google.http.client.version}</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-lang3</artifactId>
- <version>${commons.lang3.version}</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/ch.qos.logback/logback-classic -->
- <dependency>
- <groupId>ch.qos.logback</groupId>
- <artifactId>logback-classic</artifactId>
- <version>${logback.classic.version}</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.mock-server/mockserver-netty -->
- <dependency>
- <groupId>org.mock-server</groupId>
- <artifactId>mockserver-netty</artifactId>
- <version>${mockserver.version}</version>
- <scope>test</scope>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.mock-server/mockserver-junit-rule -->
- <dependency>
- <groupId>org.mock-server</groupId>
- <artifactId>mockserver-junit-rule</artifactId>
- <version>${mockserver.version}</version>
- <scope>test</scope>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.mockito/mockito-core -->
- <dependency>
- <groupId>org.mockito</groupId>
- <artifactId>mockito-core</artifactId>
- <version>${mockito.version}</version>
- <scope>test</scope>
- </dependency>
- <!-- https://mvnrepository.com/artifact/com.amazonaws/aws-java-sdk -->
- <dependency>
- <groupId>com.amazonaws</groupId>
- <artifactId>aws-java-sdk-s3</artifactId>
- <version>${aws.java.sdk.version}</version>
- </dependency>
- <!-- API, java.xml.bind module -->
- <dependency>
- <groupId>jakarta.xml.bind</groupId>
- <artifactId>jakarta.xml.bind-api</artifactId>
- <version>${jakarta.xml.bind.api.version}</version>
- </dependency>
- <!-- Runtime, com.sun.xml.bind module -->
- <dependency>
- <groupId>org.glassfish.jaxb</groupId>
- <artifactId>jaxb-runtime</artifactId>
- <version>${jaxb.runtime.version}</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpclient</artifactId>
- <version>${httpclient.version}</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
- <dependency>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- <version>${commons.io.version}</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-compress -->
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-compress</artifactId>
- <version>${commons.compress.version}</version>
- </dependency>
- <!-- prometheus metrics -->
- <dependency>
- <groupId>io.prometheus</groupId>
- <artifactId>simpleclient</artifactId>
- <version>${simpleclient.version}</version>
- </dependency>
- <!-- Hotspot JVM metrics -->
- <dependency>
- <groupId>io.prometheus</groupId>
- <artifactId>simpleclient_hotspot</artifactId>
- <version>${simpleclient.version}</version>
- </dependency>
- <!-- Expose metrics via a servlet -->
- <dependency>
- <groupId>io.prometheus</groupId>
- <artifactId>simpleclient_servlet</artifactId>
- <version>${simpleclient.version}</version>
- </dependency>
- <!-- Require by MockServerClient to load 'sun.security.x509' / 'sun.security.util' -->
- <dependency>
- <groupId>org.bouncycastle</groupId>
- <artifactId>bcprov-jdk18on</artifactId>
- <version>${bouncycastle.crypto.version}</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.bouncycastle</groupId>
- <artifactId>bcpkix-jdk18on</artifactId>
- <version>${bouncycastle.crypto.version}</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
- </project>
|