1
0

Basic implementation for files app

This commit is contained in:
2022-05-06 23:01:23 +02:00
parent 4e12f4805e
commit 7d6c6c6321
54 changed files with 2381 additions and 94 deletions

143
pom.xml
View File

@@ -3,18 +3,6 @@
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>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>16</source>
<target>16</target>
</configuration>
</plugin>
</plugins>
</build>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
@@ -32,13 +20,18 @@
<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>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>17</java.version>
<java.version>18</java.version>
</properties>
<distributionManagement>
@@ -55,16 +48,132 @@
<dependencyManagement>
<dependencies>
<dependency>
<groupId>de.77zzc7.nbs-cloud</groupId>
<groupId>de.77zzcx7.nbs-cloud</groupId>
<artifactId>web-container</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>de.77zzc7.nbs-cloud</groupId>
<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>