This commit is contained in:
potzplitz 2024-03-03 02:07:00 +01:00
parent 20c2d7cf47
commit f4ed367c38
4 changed files with 74 additions and 25 deletions

View file

@ -0,0 +1,4 @@
Manifest-Version: 1.0
Build-Jdk-Spec: 17
Created-By: Maven Integration for Eclipse

View file

@ -0,0 +1,7 @@
#Generated by Maven Integration for Eclipse
#Sun Mar 03 02:06:38 CET 2024
m2e.projectLocation=C\:\\Users\\jansc\\eclipse-workspace\\ExtremeDemonList
m2e.projectName=ExtremeDemonList
groupId=ExtremeDemonList
artifactId=ExtremeDemonList
version=0.0.1-SNAPSHOT

View file

@ -0,0 +1,39 @@
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>ExtremeDemonList</groupId>
<artifactId>ExtremeDemonList</artifactId>
<version>0.0.1-SNAPSHOT</version>
<!-- https://mvnrepository.com/artifact/org.json/json -->
<dependencies>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20140107</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.6</version>
</dependency>
<!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.6</version>
</dependency>
</dependencies>
<build>
<directory>${project.basedir}/builds</directory>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.1</version> <!-- Stelle sicher, dass diese Version Java 17 unterstützt -->
<configuration>
<release>17</release> <!-- Setze dies auf die gewünschte Java-Version -->
</configuration>
</plugin>
</plugins>
</build>
</project>

49
pom.xml
View file

@ -5,36 +5,35 @@
<version>0.0.1-SNAPSHOT</version>
<!-- https://mvnrepository.com/artifact/org.json/json -->
<dependencies>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20140107</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.6</version>
</dependency>
<!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.6</version>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20140107</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.6</version>
</dependency>
<!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.6</version>
</dependency>
</dependencies>
<build>
<directory>target</directory>
<directory>${project.basedir}/builds</directory>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.1</version> <!-- Stelle sicher, dass diese Version Java 17 unterstützt -->
<configuration>
<release>17</release> <!-- Setze dies auf die gewünschte Java-Version -->
</configuration>
</plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.1</version> <!-- Stelle sicher, dass diese Version Java 17 unterstützt -->
<configuration>
<release>17</release> <!-- Setze dies auf die gewünschte Java-Version -->
</configuration>
</plugin>
</plugins>
</build>
</project>