38 lines
1.5 KiB
XML
38 lines
1.5 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>nl.andrewl</groupId>
|
||
|
<artifactId>distribugit</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
|
||
|
<properties>
|
||
|
<maven.compiler.source>17</maven.compiler.source>
|
||
|
<maven.compiler.target>17</maven.compiler.target>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
</properties>
|
||
|
|
||
|
<dependencies>
|
||
|
<!-- https://mvnrepository.com/artifact/org.eclipse.jgit/org.eclipse.jgit -->
|
||
|
<dependency>
|
||
|
<groupId>org.eclipse.jgit</groupId>
|
||
|
<artifactId>org.eclipse.jgit</artifactId>
|
||
|
<version>6.1.0.202203080745-r</version>
|
||
|
</dependency>
|
||
|
<!-- https://mvnrepository.com/artifact/org.eclipse.jgit/org.eclipse.jgit.ssh.jsch -->
|
||
|
<dependency>
|
||
|
<groupId>org.eclipse.jgit</groupId>
|
||
|
<artifactId>org.eclipse.jgit.ssh.jsch</artifactId>
|
||
|
<version>6.1.0.202203080745-r</version>
|
||
|
</dependency>
|
||
|
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-simple -->
|
||
|
<dependency>
|
||
|
<groupId>org.slf4j</groupId>
|
||
|
<artifactId>slf4j-simple</artifactId>
|
||
|
<version>1.7.36</version>
|
||
|
<scope>runtime</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</project>
|