1
0

Vorbereitungen für Jacoco

This commit is contained in:
2026-04-01 10:30:30 +02:00
parent c17cb4a70c
commit 1c71db9cfd
3 changed files with 162 additions and 139 deletions

View File

@@ -1,4 +1,4 @@
# PDF Umbenenner Local Configuration Example # PDF Umbenenner Local Configuration Example
# AP-005: Copy this file to config/application.properties and adjust values for local development # AP-005: Copy this file to config/application.properties and adjust values for local development
# Mandatory M1 properties # Mandatory M1 properties

View File

@@ -1,4 +1,4 @@
# PDF Umbenenner Test Configuration Example # PDF Umbenenner Test Configuration Example
# AP-005: Copy this file to config/application.properties and adjust values for testing # AP-005: Copy this file to config/application.properties and adjust values for testing
# Mandatory M1 properties # Mandatory M1 properties

25
pom.xml
View File

@@ -1,5 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<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>
<groupId>de.gecheckt</groupId> <groupId>de.gecheckt</groupId>
<artifactId>pdf-umbenenner-parent</artifactId> <artifactId>pdf-umbenenner-parent</artifactId>
@@ -31,6 +33,7 @@
<maven-surefire-plugin.version>3.2.5</maven-surefire-plugin.version> <maven-surefire-plugin.version>3.2.5</maven-surefire-plugin.version>
<maven-enforcer-plugin.version>3.4.1</maven-enforcer-plugin.version> <maven-enforcer-plugin.version>3.4.1</maven-enforcer-plugin.version>
<maven-shade-plugin.version>3.6.0</maven-shade-plugin.version> <maven-shade-plugin.version>3.6.0</maven-shade-plugin.version>
<jacoco-maven-plugin.version>0.8.14</jacoco-maven-plugin.version>
</properties> </properties>
<dependencyManagement> <dependencyManagement>
@@ -139,7 +142,27 @@
<artifactId>maven-shade-plugin</artifactId> <artifactId>maven-shade-plugin</artifactId>
<version>${maven-shade-plugin.version}</version> <version>${maven-shade-plugin.version}</version>
</plugin> </plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco-maven-plugin.version}</version>
</plugin>
</plugins> </plugins>
</pluginManagement> </pluginManagement>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<executions>
<execution>
<id>jacoco-prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build> </build>
</project> </project>