Initial commit

This commit is contained in:
Paul Campbell 2018-05-11 16:48:23 +01:00
commit b626b967b8
4 changed files with 84 additions and 0 deletions

3
.gitignore vendored Normal file
View file

@ -0,0 +1,3 @@
**/target
**/.idea
**/*.iml

63
pom.xml Normal file
View file

@ -0,0 +1,63 @@
<?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>net.kemitix</groupId>
<artifactId>gitfs</artifactId>
<version>0.1.0-SNAPSHOT</version>
<properties>
<scala-library.version>2.12.6</scala-library.version>
<scala-maven-plugin.version>3.3.2</scala-maven-plugin.version>
<junit.version>5.2.0</junit.version>
<assertj.version>3.9.1</assertj.version>
</properties>
<dependencies>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
<version>${scala-library.version}</version>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${assertj.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<scope>runtime</scope>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>${junit.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>net.alchim31.maven</groupId>
<artifactId>scala-maven-plugin</artifactId>
<version>${scala-maven-plugin.version}</version>
</plugin>
</plugins>
</build>
</project>

View file

@ -0,0 +1,5 @@
package net.kemitix.gitfs
class GitFS {
}

View file

@ -0,0 +1,13 @@
package net.kemitix.gitfs;
import org.junit.jupiter.api.Test;
import static org.assertj.core.api.Assertions.assertThat;
class GitFsTest {
@Test
void dummy() {
assertThat(true).isTrue();
}
}