Skip to content
Snippets Groups Projects
Commit ab81ee26 authored by OZGCloud's avatar OZGCloud
Browse files

OZG-3532 OZG-4581 Fix warning from mapstruct

parent 0a43f73f
No related branches found
No related tags found
No related merge requests found
...@@ -220,17 +220,4 @@ ...@@ -220,17 +220,4 @@
</plugins> </plugins>
</pluginManagement> </pluginManagement>
</build> </build>
<distributionManagement>
<repository>
<id>ozg-nexus</id>
<name>ozg-releases</name>
<url>https://nexus.ozg-sh.de/repository/ozg-releases/</url>
</repository>
<snapshotRepository>
<id>ozg-snapshots-nexus</id>
<name>ozg-snapshots</name>
<url>https://nexus.ozg-sh.de/repository/ozg-snapshots/</url>
</snapshotRepository>
</distributionManagement>
</project> </project>
#!/usr/bin/env bash #!/usr/bin/env bash
./mvnw -f user-manager-server/pom.xml quarkus:dev -Dquarkus.profile=local,remotekc ./mvnw -pl user-manager-server quarkus:dev -Dquarkus.profile=local,remotekc
\ No newline at end of file \ No newline at end of file
...@@ -24,7 +24,8 @@ ...@@ -24,7 +24,8 @@
unter der Lizenz sind dem Lizenztext zu entnehmen. unter der Lizenz sind dem Lizenztext zu entnehmen.
--> -->
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
...@@ -249,6 +250,13 @@ ...@@ -249,6 +250,13 @@
<!-- Core plugins --> <!-- Core plugins -->
<plugin> <plugin>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<executions>
<execution>
<id>default-compile1</id>
<phase>compile</phase>
<goals>
<goal>compile</goal>
</goals>
<configuration> <configuration>
<fork>true</fork> <fork>true</fork>
<annotationProcessorPaths> <annotationProcessorPaths>
...@@ -275,6 +283,8 @@ ...@@ -275,6 +283,8 @@
</compilerArg> </compilerArg>
</compilerArgs> </compilerArgs>
</configuration> </configuration>
</execution>
</executions>
</plugin> </plugin>
<plugin> <plugin>
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment