2022-01-09 09:27:44 +01: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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2021-02-08 19:30:37 +01:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>event-bus-core</artifactId>
|
|
|
|
<name>Event Bus Core</name>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>dev.kske</groupId>
|
|
|
|
<artifactId>event-bus</artifactId>
|
2021-11-26 15:54:37 +01:00
|
|
|
<version>1.2.0</version>
|
2021-02-08 19:30:37 +01:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-api</artifactId>
|
2021-11-24 12:52:59 +01:00
|
|
|
<version>5.8.1</version>
|
2021-02-08 19:30:37 +01:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2021-02-09 09:52:26 +01:00
|
|
|
|
|
|
|
<build>
|
|
|
|
|
|
|
|
<!-- Disable resource folder -->
|
|
|
|
<resources />
|
|
|
|
|
2021-11-24 12:52:59 +01:00
|
|
|
<plugins>
|
2022-01-09 09:27:44 +01:00
|
|
|
|
|
|
|
<!-- Run unit tests -->
|
2021-11-24 12:52:59 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<version>3.0.0-M5</version>
|
|
|
|
</plugin>
|
|
|
|
|
2022-01-09 09:27:44 +01:00
|
|
|
<!-- Generate coverage report -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.jacoco</groupId>
|
|
|
|
<artifactId>jacoco-maven-plugin</artifactId>
|
|
|
|
<version>0.8.7</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>prepare-agent</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>report</id>
|
|
|
|
<phase>test</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>report</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
</plugins>
|
2021-02-09 09:52:26 +01:00
|
|
|
</build>
|
2021-02-08 19:30:37 +01:00
|
|
|
</project>
|