Skip to content

Commit

Permalink
Add warrior adventure game skeleton
Browse files Browse the repository at this point in the history
  • Loading branch information
Andreas Lück committed Mar 1, 2024
1 parent e6f55e6 commit f1a489d
Show file tree
Hide file tree
Showing 5 changed files with 46 additions and 0 deletions.
2 changes: 2 additions & 0 deletions adventure-warrior/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/target/
/.idea/
22 changes: 22 additions & 0 deletions adventure-warrior/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?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>

<parent>
<relativePath>../pom.xml</relativePath>
<groupId>com.quadient.internship.artur</groupId>
<artifactId>internship-artur-parent</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>

<artifactId>adventure-warrior</artifactId>

<name>Adventure Warrior</name>

<properties>
</properties>

<dependencies>
</dependencies>
</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package com.quadient.internship.artur;

public class Main {
public static void main(String[] args) {
System.out.println("""
Hello
World!
""");
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package com.quadient.internship.artur;

import org.assertj.core.api.Assertions;
import org.junit.jupiter.api.Test;

class MainTest {
@Test
void shouldAnswerWithTrue() {
Assertions.assertThat(true).isTrue();
}
}
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

<modules>
<module>hangman</module>
<module>adventure-warrior</module>
</modules>

<properties>
Expand Down

0 comments on commit f1a489d

Please sign in to comment.