/
NikolayIvkin
/
tutorials1
Обзор
Документация
Войти
/
NikolayIvkin
/
tutorials1
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
core-java-modules/core-java-18/pom.xml
53 строки
2 KB
Harry9656
Closes JAVA-33719: Maven surefire plugin upgrade. (#16774)
03 авг 2024, 22:31
Не верифицирован
03 авг 2024, 22:31
747e1f5
Код
Авторство
О чём код?
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <artifactId>core-java-18</artifactId> <packaging>jar</packaging> <name>core-java-18</name> <parent> <groupId>com.baeldung</groupId> <artifactId>parent-modules</artifactId> <version>1.0.0-SNAPSHOT</version> <relativePath>../../</relativePath> </parent> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <release>${maven.compiler.release}</release> <compilerArgs>--enable-preview</compilerArgs> <source>${maven.compiler.source.version}</source> <target>${maven.compiler.target.version}</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> <configuration> <forkCount>1</forkCount> </configuration> <dependencies> <dependency> <groupId>org.apache.maven.surefire</groupId> <artifactId>surefire-api</artifactId> <version>${surefire.plugin.version}</version> </dependency> </dependencies> </plugin> </plugins> </build> <properties> <maven.compiler.source.version>18</maven.compiler.source.version> <maven.compiler.target.version>18</maven.compiler.target.version> <maven.compiler.release>18</maven.compiler.release> </properties> </project>