1
0

Day 5 initial

This commit is contained in:
2025-12-06 17:58:32 +01:00
commit 2ac9f10c15
6 changed files with 1423 additions and 0 deletions

35
pom.xml Normal file
View File

@@ -0,0 +1,35 @@
<?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.7zzcx7.de</groupId>
<artifactId>advent_of_code_2025</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<maven.compiler.source>25</maven.compiler.source>
<maven.compiler.target>25</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<scmDeveloperConnectionProp />
</properties>
<distributionManagement>
<snapshotRepository>
<id>77zzcx7-snapshots</id>
<url>http://192.168.10.4:8100/snapshots/</url>
</snapshotRepository>
<repository>
<id>77zzcx7-releases</id>
<url>http://192.168.10.4:8100/releases/</url>
</repository>
</distributionManagement>
<scm>
<connection>scm:git:https://gitea.77zzcx7.de/MK13/advent_of_code_2025.git</connection>
<developerConnection>${scmDeveloperConnectionProp}</developerConnection>
<url>https://gitea.77zzcx7.de/MK13/advent_of_code_2025</url>
</scm>
</project>