209 lines
8.3 KiB
XML
209 lines
8.3 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>
|
|
<parent>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>2.6.6</version>
|
|
<relativePath />
|
|
</parent>
|
|
|
|
<groupId>de.77zzcx7.nbs-cloud</groupId>
|
|
<artifactId>nbs-cloud-aggregator</artifactId>
|
|
<version>22-SNAPSHOT</version>
|
|
<packaging>pom</packaging>
|
|
<description>The umbrella for all No BullShit cloud projects</description>
|
|
<name>nbs-cloud-aggregator</name>
|
|
|
|
<modules>
|
|
<module>files</module>
|
|
<module>files-api</module>
|
|
<module>web-container</module>
|
|
<module>web-container-registry</module>
|
|
<module>notes</module>
|
|
<module>pastebin</module>
|
|
<module>bookmarks</module>
|
|
<module>web-container-config</module>
|
|
<module>todo</module>
|
|
<module>dashboard</module>
|
|
</modules>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<java.version>18</java.version>
|
|
<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://77zzcx7.de/gitea/MK13/NoBullShit-cloud.git</connection>
|
|
<developerConnection>${scmDeveloperConnectionProp}</developerConnection>
|
|
<url>https://77zzcx7.de/gitea/MK13/NoBullShit-cloud</url>
|
|
<tag>v14</tag>
|
|
</scm>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>de.77zzcx7.nbs-cloud</groupId>
|
|
<artifactId>web-container</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>de.77zzcx7.nbs-cloud</groupId>
|
|
<artifactId>files</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>de.77zzcx7.nbs-cloud</groupId>
|
|
<artifactId>files-api</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>de.77zzcx7.nbs-cloud</groupId>
|
|
<artifactId>web-container-registry</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>de.77zzcx7.nbs-cloud</groupId>
|
|
<artifactId>notes</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>de.77zzcx7.nbs-cloud</groupId>
|
|
<artifactId>pastebin</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>de.77zzcx7.nbs-cloud</groupId>
|
|
<artifactId>bookmarks</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>de.77zzcx7.nbs-cloud</groupId>
|
|
<artifactId>web-container-config</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>de.77zzcx7.nbs-cloud</groupId>
|
|
<artifactId>todo</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>de.77zzcx7.nbs-cloud</groupId>
|
|
<artifactId>dashboard</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-collections4</artifactId>
|
|
<version>4.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
<version>2.11.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.overviewproject</groupId>
|
|
<artifactId>mime-types</artifactId>
|
|
<version>1.0.2</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.12</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<build>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>18</source>
|
|
<target>18</target>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>fr.jcgay.maven.plugins</groupId>
|
|
<artifactId>buildplan-maven-plugin</artifactId>
|
|
<version>1.5</version>
|
|
<executions>
|
|
<execution>
|
|
<id>build-plan</id>
|
|
<phase>initialize</phase>
|
|
<goals>
|
|
<goal>list</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<!-- As we had to rename the config file for modules (since Spring only supports one
|
|
application.properties), we also need to adjust the filtering -->
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>process-module-configs</id>
|
|
<phase>process-resources</phase>
|
|
<goals>
|
|
<goal>resources</goal>
|
|
</goals>
|
|
<configuration>
|
|
<propertiesEncoding>UTF-8</propertiesEncoding>
|
|
<delimiters>
|
|
<delimiter>@</delimiter>
|
|
</delimiters>
|
|
<useDefaultDelimiters>false</useDefaultDelimiters>
|
|
<resources>
|
|
<resource>
|
|
<directory>${project.basedir}/src/main/resources</directory>
|
|
<includes>
|
|
<include>**/*-application.properties</include>
|
|
<include>**/*-application-*.properties</include>
|
|
</includes>
|
|
<filtering>true</filtering>
|
|
</resource>
|
|
</resources>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
<version>3.0.0-M5</version>
|
|
<configuration>
|
|
<tagNameFormat>v@{project.version}</tagNameFormat>
|
|
<autoVersionSubmodules>true</autoVersionSubmodules>
|
|
<signTag>true</signTag>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>fr.jcgay.maven.plugins</groupId>
|
|
<artifactId>buildplan-maven-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|