Files
compositor/pom.xml
Guillaume Dugas b205c0d18a
All checks were successful
Maven build / build (push) Successful in 1m39s
Init (1)
2026-02-19 22:24:19 +01:00

38 lines
1.2 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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>fr.cnd.compositor</groupId>
<artifactId>root</artifactId>
<version>1.0-SNAPSHOT</version>
<name>Compositor Parent</name>
<packaging>pom</packaging>
<modules>
<module>bom</module>
<module>builder</module>
<module>domain</module>
<module>modules/core</module>
</modules>
<repositories>
<repository>
<id>gitea</id>
<url>https://gitea.tech.codeanddata.fr/api/packages/${env.MAVEN_REPO_OWNER}/maven</url>
</repository>
</repositories>
<distributionManagement>
<repository>
<id>gitea</id>
<url>https://gitea.tech.codeanddata.fr/api/packages/${env.MAVEN_REPO_OWNER}/maven</url>
</repository>
<snapshotRepository>
<id>gitea</id>
<url>https://gitea.tech.codeanddata.fr/api/packages/${env.MAVEN_REPO_OWNER}/maven</url>
</snapshotRepository>
</distributionManagement>
</project>