2023-01-25 10:59:50 +00:00
|
|
|
<?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/maven-v4_0_0.xsd'>
|
2017-09-14 11:59:03 +00:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>org.fedoraproject.xmvn.junit5</groupId>
|
|
|
|
<artifactId>aggregator</artifactId>
|
2022-09-07 10:48:11 +00:00
|
|
|
<version>any</version>
|
2017-09-14 11:59:03 +00:00
|
|
|
<packaging>pom</packaging>
|
2022-09-07 10:12:58 +00:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
2017-09-14 11:59:03 +00:00
|
|
|
<modules>
|
2020-02-17 21:31:16 +00:00
|
|
|
<module>junit-bom</module>
|
2022-09-07 10:48:11 +00:00
|
|
|
<module>junit-jupiter</module>
|
|
|
|
<module>junit-jupiter-api</module>
|
|
|
|
<module>junit-jupiter-engine</module>
|
|
|
|
<module>junit-jupiter-migrationsupport</module>
|
|
|
|
<module>junit-jupiter-params</module>
|
2017-09-14 11:59:03 +00:00
|
|
|
<module>junit-platform-commons</module>
|
|
|
|
<module>junit-platform-console</module>
|
|
|
|
<module>junit-platform-console-standalone</module>
|
|
|
|
<module>junit-platform-engine</module>
|
|
|
|
<module>junit-platform-launcher</module>
|
|
|
|
<module>junit-platform-runner</module>
|
|
|
|
<module>junit-platform-suite-api</module>
|
2022-04-22 00:20:29 +00:00
|
|
|
<module>junit-platform-suite-commons</module>
|
2022-09-07 10:48:11 +00:00
|
|
|
<module>junit-platform-testkit</module>
|
2017-09-14 11:59:03 +00:00
|
|
|
<module>junit-vintage-engine</module>
|
|
|
|
</modules>
|
|
|
|
<build>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
2022-09-07 10:12:35 +00:00
|
|
|
<plugin>
|
2023-02-23 14:31:57 +00:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2022-09-07 10:12:35 +00:00
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2023-02-23 14:31:57 +00:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>default-compile</id>
|
|
|
|
<goals>
|
|
|
|
<goal>compile</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<release>8</release>
|
|
|
|
<!--
|
|
|
|
(default-compile) for junit-jupiter module would fail because
|
|
|
|
there are no sources to compile and therefore the plugin would
|
|
|
|
include module-info in the first (Java 8) compile phase
|
|
|
|
-->
|
|
|
|
<useIncrementalCompilation>false</useIncrementalCompilation>
|
|
|
|
<excludes>
|
|
|
|
<exclude>**/module-info.java</exclude>
|
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>module-info</id>
|
|
|
|
<goals>
|
|
|
|
<goal>compile</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<release>9</release>
|
|
|
|
<includes>
|
|
|
|
<include>**/module-info.java</include>
|
|
|
|
</includes>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2022-09-07 10:12:35 +00:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
2017-09-14 11:59:03 +00:00
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
2022-09-07 10:12:35 +00:00
|
|
|
</plugin>
|
2017-09-14 11:59:03 +00:00
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
|
|
<version>2.1.0</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>bundle-manifest</id>
|
|
|
|
<phase>process-classes</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>manifest</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<instructions>
|
2022-09-07 10:12:35 +00:00
|
|
|
<Bundle-SymbolicName>${osgi.bsn}</Bundle-SymbolicName>
|
|
|
|
<Automatic-Module-Name>${osgi.bsn}</Automatic-Module-Name>
|
|
|
|
<_nouses>true</_nouses>
|
2017-09-14 11:59:03 +00:00
|
|
|
</instructions>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|