Generic game-engine with quest and experience system for my bachelor thesis. It got implemented in a project management system "Gantt Project" https://github.com/hribhrib/ganttproject
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
2.1 KiB
57 lines
2.1 KiB
<?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>letz</groupId> |
|
<artifactId>letzplay</artifactId> |
|
<version>1.0</version> |
|
<packaging>jar</packaging> |
|
<properties> |
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
</properties> |
|
|
|
<build> |
|
<finalName>letzplay</finalName> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-compiler-plugin</artifactId> |
|
<version>3.8.0</version> |
|
<configuration> |
|
<source>11</source> |
|
<target>11</target> |
|
</configuration> |
|
</plugin> |
|
|
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-surefire-plugin</artifactId> |
|
<version>2.21.0</version> |
|
<dependencies> |
|
<dependency> |
|
<groupId>org.junit.platform</groupId> |
|
<artifactId>junit-platform-surefire-provider</artifactId> |
|
<version>1.2.0-M1</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.junit.jupiter</groupId> |
|
<artifactId>junit-jupiter-engine</artifactId> |
|
<version>5.4.1</version> |
|
</dependency> |
|
</dependencies> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
<dependencies> |
|
<!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api --> |
|
<dependency> |
|
<groupId>org.junit.jupiter</groupId> |
|
<artifactId>junit-jupiter-api</artifactId> |
|
<version>5.4.1</version> |
|
<scope>test</scope> |
|
</dependency> |
|
</dependencies> |
|
|
|
</project> |