Project init
Some checks failed
Maven build / build (push) Failing after 1m25s

This commit is contained in:
Guillaume Dugas
2025-08-26 17:33:03 +02:00
commit e548e21f4f
64 changed files with 2611 additions and 0 deletions

19
.mvn/settings.xml Normal file
View File

@@ -0,0 +1,19 @@
<settings xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
https://maven.apache.org/xsd/settings-1.0.0.xsd">
<servers>
<server>
<id>gitea</id>
<configuration>
<httpHeaders>
<property>
<name>Authorization</name>
<value>token ${env.MAVEN_ACCESS_TOKEN}</value>
</property>
</httpHeaders>
</configuration>
</server>
</servers>
</settings>