mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
93 lines
3.2 KiB
XML
93 lines
3.2 KiB
XML
|
<?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>groupId</groupId>
|
||
|
<artifactId>writelatex-git-bridge</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
<properties>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
</properties>
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<artifactId>maven-assembly-plugin</artifactId>
|
||
|
<version>2.4</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>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>junit</groupId>
|
||
|
<artifactId>junit</artifactId>
|
||
|
<version>4.10</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.jmock</groupId>
|
||
|
<artifactId>jmock-junit4</artifactId>
|
||
|
<version>2.6.0</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.jmock</groupId>
|
||
|
<artifactId>jmock-legacy</artifactId>
|
||
|
<version>2.6.0</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.eclipse.jetty.aggregate</groupId>
|
||
|
<artifactId>jetty-all</artifactId>
|
||
|
<version>9.2.6.v20141205</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.google.code.gson</groupId>
|
||
|
<artifactId>gson</artifactId>
|
||
|
<version>2.3.1</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.ning</groupId>
|
||
|
<artifactId>async-http-client</artifactId>
|
||
|
<version>1.9.3</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.eclipse.jgit</groupId>
|
||
|
<artifactId>org.eclipse.jgit</artifactId>
|
||
|
<version>3.6.0.201412230720-r</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.eclipse.jgit</groupId>
|
||
|
<artifactId>org.eclipse.jgit.http.server</artifactId>
|
||
|
<version>3.6.0.201412230720-r</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.xerial</groupId>
|
||
|
<artifactId>sqlite-jdbc</artifactId>
|
||
|
<version>3.8.7</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.slf4j</groupId>
|
||
|
<artifactId>slf4j-nop</artifactId>
|
||
|
<version>1.7.9</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
</project>
|