Finish assignment

Signed-off-by: Severin Kaderli <severin@kaderli.dev>
This commit is contained in:
Severin Kaderli 2022-03-30 19:17:43 +02:00
parent c016d3cf61
commit af528d26c4
Signed by: severinkaderli
GPG key ID: F419F8835B72F0C4
11 changed files with 145 additions and 25 deletions

23
pom.xml
View file

@ -4,12 +4,12 @@
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>
<artifactId>consoleApp</artifactId>
<artifactId>Assessment-2</artifactId>
<groupId>dev.kaderli</groupId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>consoleApp</name>
<name>Assessment-2</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@ -65,6 +65,15 @@
<mainClass>MainKt</mainClass>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
</plugins>
</build>
@ -72,7 +81,7 @@
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-test-junit5</artifactId>
<version>1.5.10</version>
<version>1.6.10</version>
<scope>test</scope>
</dependency>
<dependency>
@ -81,10 +90,16 @@
<version>5.6.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>5.6.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jdk8</artifactId>
<version>1.5.10</version>
<version>1.6.10</version>
</dependency>
</dependencies>