Pom angepasst, dass kein assembly.xml mehr ausgeführt wird.
Some checks failed
Productmodel Java CI with Maven / build (push) Failing after 1m28s

This commit is contained in:
2026-01-12 12:32:56 +01:00
parent e8354c9fd0
commit a7b40a9b9d
7 changed files with 117 additions and 218 deletions

33
pom.xml
View File

@@ -1,9 +1,9 @@
<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>
<groupId>at.vvo.omds</groupId>
<groupId>com.kapdion.omds</groupId>
<artifactId>productmodel</artifactId>
<version>2025.27-PRODUKTE-SNAPSHOT</version>
<version>2025.27-SNAPSHOT</version>
<name>productmodel abgeleitet von OMDS Service Definition</name>
<description>Dieses Projekt enthält das Produktmodell, abgeleictet vom OMDS Produktmodell.</description>
@@ -31,38 +31,11 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
<artifactId>maven-compiler-plugin</artifactId>
<version>3.12.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.7.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.6.3</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>assembly.xml</descriptor>
</descriptors>
</configuration>
<executions>
<execution>
<id>make-assembly</id> <!-- this is used for inheritance merges -->
<phase>install</phase> <!-- bind to the install phase, damit source-jar und javadoc-jar mit eingepackt werden -->
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>