a18e40
<project>
a18e40
  <modelVersion>4.0.0</modelVersion>
a18e40
  <groupId>org.fedoraproject.xmvn.junit5</groupId>
a18e40
  <artifactId>aggregator</artifactId>
a18e40
  <version>1.0.0</version>
a18e40
  <packaging>pom</packaging>
a18e40
  <modules>
a18e40
    <module>junit-platform-commons</module>
a18e40
    <module>junit-platform-console</module>
a18e40
    <module>junit-platform-console-standalone</module>
a18e40
    <module>junit-platform-engine</module>
a18e40
    <module>junit-platform-launcher</module>
a18e40
    <module>junit-platform-reporting</module>
a18e40
    <module>junit-platform-runner</module>
a18e40
    <module>junit-platform-suite-api</module>
a18e40
    <module>junit-jupiter-api</module>
a18e40
    <module>junit-jupiter-engine</module>
a18e40
    <module>junit-jupiter-migrationsupport</module>
a18e40
    <module>junit-jupiter-params</module>
a18e40
    <module>junit-vintage-engine</module>
a18e40
  </modules>
a18e40
  <build>
a18e40
    <pluginManagement>
a18e40
      <plugins>
a18e40
	<plugin>
a18e40
	  <artifactId>maven-compiler-plugin</artifactId>
a18e40
	  <configuration>
a18e40
	    <source>1.8</source>
a18e40
	    <target>1.8</target>
a18e40
	  </configuration>
a18e40
	</plugin>
a18e40
	<plugin>
a18e40
          <artifactId>maven-jar-plugin</artifactId>
a18e40
          <configuration>
a18e40
            <archive>
a18e40
              <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
a18e40
            </archive>
a18e40
          </configuration>
a18e40
	</plugin>
a18e40
      </plugins>
a18e40
    </pluginManagement>
a18e40
    <plugins>
a18e40
      <plugin>
a18e40
        <groupId>org.apache.felix</groupId>
a18e40
        <artifactId>maven-bundle-plugin</artifactId>
a18e40
        <version>2.1.0</version>
a18e40
        <executions>
a18e40
          <execution>
a18e40
            <id>bundle-manifest</id>
a18e40
            <phase>process-classes</phase>
a18e40
            <goals>
a18e40
              <goal>manifest</goal>
a18e40
            </goals>
a18e40
            <configuration>
a18e40
              <instructions>
a18e40
		<Bundle-SymbolicName>${osgi.bsn}</Bundle-SymbolicName>
a18e40
		<Automatic-Module-Name>${osgi.bsn}</Automatic-Module-Name>
a18e40
		<_nouses>true</_nouses>
a18e40
              </instructions>
a18e40
            </configuration>
a18e40
          </execution>
a18e40
        </executions>
a18e40
      </plugin>
a18e40
    </plugins>
a18e40
  </build>
a18e40
</project>