]> Git Server - utils.git/commitdiff
initiated
authorRobin Cheney <cheneyr@eternal.ddnss.de>
Wed, 19 Nov 2025 10:10:37 +0000 (11:10 +0100)
committerRobin Cheney <cheneyr@eternal.ddnss.de>
Wed, 19 Nov 2025 10:10:37 +0000 (11:10 +0100)
.gitignore [new file with mode: 0644]
pom.xml [new file with mode: 0644]
src/main/java/de/ddnss/eternal/utils/Main.java [new file with mode: 0644]

diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..e420ee4
--- /dev/null
@@ -0,0 +1 @@
+target/*
diff --git a/pom.xml b/pom.xml
new file mode 100644 (file)
index 0000000..06ceef4
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,16 @@
+<?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>de.ddnss.eternal.utils</groupId>
+    <artifactId>utils</artifactId>
+    <version>1.0-SNAPSHOT</version>
+
+    <properties>
+        <maven.compiler.source>17</maven.compiler.source>
+        <maven.compiler.target>17</maven.compiler.target>
+    </properties>
+
+</project>
\ No newline at end of file
diff --git a/src/main/java/de/ddnss/eternal/utils/Main.java b/src/main/java/de/ddnss/eternal/utils/Main.java
new file mode 100644 (file)
index 0000000..b1cde30
--- /dev/null
@@ -0,0 +1,7 @@
+package de.ddnss.eternal.utils;
+
+public class Main {
+    public static void main(String[] args) {
+        System.out.println("Hello world!");
+    }
+}
\ No newline at end of file