179 lines
7.1 KiB
XML
179 lines
7.1 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>1-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>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>
|
|
</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>
|
|
|
|
<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>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>
|
|
</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>
|
|
</plugins>
|
|
</pluginManagement>
|
|
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>fr.jcgay.maven.plugins</groupId>
|
|
<artifactId>buildplan-maven-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project> |