Skip to content

Commit

Permalink
chore: fix pom.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
sitepark-veltrup committed Apr 12, 2024
1 parent 617ec5a commit 80082dc
Showing 1 changed file with 24 additions and 1 deletion.
25 changes: 24 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,26 @@
</testResources>
<plugins>
<plugin>
 <groupId>org.codehaus.mojo</groupId>
 <artifactId>build-helper-maven-plugin</artifactId>
 <version>3.5.0</version>
 <executions>
 <execution>
 <id>add-integration-test-sources</id>
 <goals>
 <goal>add-test-source</goal>
 </goals>
 <phase>generate-test-sources</phase>
 <configuration>
 <sources>
 <source>src/integration-test/java</source>
 </sources>
 </configuration>
 </execution>
 </executions>
 </plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
</plugin>
Expand All @@ -177,11 +197,14 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.2.5</version>
<configuration>
<argLine>-Duser.timezone=Europe/Berlin ${argLine}</argLine>
 </configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.0</version>
<version>3.3.1</version>
<configuration>
<doclint>all,-missing</doclint>
</configuration>
Expand Down

0 comments on commit 80082dc

Please sign in to comment.