2021-02-08 19:30:37 +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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2021-02-15 21:02:34 +01:00
|
|
|
<artifactId>event-bus-proc</artifactId>
|
2021-02-08 19:30:37 +01:00
|
|
|
|
|
|
|
<name>Event Bus Annotation Processor</name>
|
|
|
|
<description>Annotation processor checking for errors related to the @Event annotation from Event Bus.</description>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>dev.kske</groupId>
|
|
|
|
<artifactId>event-bus</artifactId>
|
2021-03-28 10:36:37 +02:00
|
|
|
<version>1.1.0</version>
|
2021-02-08 19:30:37 +01:00
|
|
|
</parent>
|
2021-02-09 09:52:26 +01:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>dev.kske</groupId>
|
|
|
|
<artifactId>event-bus-core</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
|
|
|
<!-- Disable test folder -->
|
|
|
|
<testSourceDirectory />
|
|
|
|
|
2021-02-14 14:34:19 +01:00
|
|
|
<plugins>
|
2021-02-15 21:02:34 +01:00
|
|
|
|
|
|
|
<!-- Prevent annotation processing error during compilation -->
|
2021-02-14 14:34:19 +01:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<compilerArgument>-proc:none</compilerArgument>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
|
2021-02-15 21:02:34 +01:00
|
|
|
<!-- Include event-bus-core classes into JAR -->
|
2021-02-14 14:34:19 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>3.2.4</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<minimizeJar>true</minimizeJar>
|
2021-02-17 08:56:42 +01:00
|
|
|
<filters>
|
|
|
|
<filter>
|
|
|
|
<artifact>dev.kske:event-bus-core</artifact>
|
|
|
|
<excludes>
|
|
|
|
<exclude>META-INF/MANIFEST.MF</exclude>
|
|
|
|
</excludes>
|
|
|
|
</filter>
|
|
|
|
<filter>
|
|
|
|
<artifact>*:*</artifact>
|
|
|
|
<excludes>
|
|
|
|
<exclude>module-info.class</exclude>
|
|
|
|
<exclude>META-INF/maven/**</exclude>
|
|
|
|
</excludes>
|
|
|
|
</filter>
|
|
|
|
</filters>
|
2021-02-14 14:34:19 +01:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
|
2021-02-09 09:52:26 +01:00
|
|
|
</build>
|
2021-02-15 21:02:34 +01:00
|
|
|
</project>
|