-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Andreas Lück
committed
Mar 1, 2024
1 parent
e6f55e6
commit f1a489d
Showing
5 changed files
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/target/ | ||
/.idea/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
10 changes: 10 additions & 0 deletions
10
adventure-warrior/src/main/java/com/quadient/internship/artur/Main.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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! | ||
"""); | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
adventure-warrior/src/test/java/com/quadient/internship/artur/MainTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,7 @@ | |
|
||
<modules> | ||
<module>hangman</module> | ||
<module>adventure-warrior</module> | ||
</modules> | ||
|
||
<properties> | ||
|