56 lines
1.9 KiB
XML
56 lines
1.9 KiB
XML
<?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>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>25</source>
|
|
<target>25</target>
|
|
<compilerArgs>--enable-preview</compilerArgs>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<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>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>io.vavr</groupId>
|
|
<artifactId>vavr</artifactId>
|
|
<version>0.10.7</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project> |