ci-cd-test/pom.xml

50 lines
1.5 KiB
XML
Raw Normal View History

2024-10-19 16:05:29 +02:00
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.example</groupId>
<artifactId>demo-app</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>ci-cd-app</name>
<url>http://maven.apache.org</url>
2024-10-19 16:11:15 +02:00
<properties>
<maven.compiler.release>21</maven.compiler.release>
<maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version>
2024-10-19 16:17:59 +02:00
<junit-jupiter.version>5.11.2</junit-jupiter.version>
2024-10-19 16:11:15 +02:00
</properties>
2024-10-19 16:05:29 +02:00
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
2024-10-19 16:17:59 +02:00
<version>${junit-jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit-jupiter.version}</version>
2024-10-19 16:05:29 +02:00
<scope>test</scope>
</dependency>
</dependencies>
2024-10-19 16:11:15 +02:00
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
2024-10-19 16:26:30 +02:00
<artifactId>maven-surefire-plugin</artifactId>
<version>3.2.5</version>
2024-10-19 16:11:15 +02:00
</plugin>
2024-10-19 16:28:57 +02:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>21</source>
<target>21</target>
</configuration>
</plugin>
2024-10-19 16:11:15 +02:00
</plugins>
</build>
2024-10-19 16:05:29 +02:00
</project>