Apache 2 Lizenz aufgenommen
This commit is contained in:
24
docs/pom.xml
24
docs/pom.xml
@@ -80,6 +80,30 @@
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<artifactId>maven-resources-plugin</artifactId>
|
||||
<version>3.3.1</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>copy-docs-to-server</id>
|
||||
<phase>package</phase> <!-- Kopieren nach dem Antora-Build -->
|
||||
<goals>
|
||||
<goal>copy-resources</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<!-- Ziel: Der statische Ressourcen-Ordner deines Spring-Moduls -->
|
||||
<outputDirectory>${project.basedir}/../server-app/src/main/resources/static/docs</outputDirectory>
|
||||
<resources>
|
||||
<resource>
|
||||
<!-- Quelle: Der Standard-Output von Antora -->
|
||||
<directory>${project.basedir}/build/site</directory>
|
||||
<filtering>false</filtering>
|
||||
</resource>
|
||||
</resources>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</project>
|
||||
Reference in New Issue
Block a user