Rename event-bus-ap to event-bus-proc

pull/8/head
Kai S. K. Engelbart 2021-02-15 21:02:34 +01:00
parent 39c51c8953
commit 1dd9e05c38
Signed by: kske
GPG Key ID: 8BEB13EC5DF7EF13
9 changed files with 11 additions and 8 deletions

View File

@ -1 +0,0 @@
dev.kske.eventbus.ap.EventProcessor

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>event-bus-ap</name>
<name>event-bus-proc</name>
<comment></comment>
<projects>
</projects>

View File

@ -3,7 +3,7 @@
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>
<artifactId>event-bus-ap</artifactId>
<artifactId>event-bus-proc</artifactId>
<name>Event Bus Annotation Processor</name>
<description>Annotation processor checking for errors related to the @Event annotation from Event Bus.</description>
@ -28,6 +28,8 @@
<testSourceDirectory />
<plugins>
<!-- Prevent annotation processing error during compilation -->
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
@ -35,6 +37,7 @@
</configuration>
</plugin>
<!-- Include event-bus-core classes into JAR -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
@ -54,4 +57,4 @@
</plugins>
</build>
</project>
</project>

View File

@ -1,4 +1,4 @@
package dev.kske.eventbus.ap;
package dev.kske.eventbus.proc;
import java.util.Set;

View File

@ -4,4 +4,4 @@
* @author Kai S. K. Engelbart
* @since 1.0.0
*/
package dev.kske.eventbus.ap;
package dev.kske.eventbus.proc;

View File

@ -0,0 +1 @@
dev.kske.eventbus.proc.EventProcessor

View File

@ -14,7 +14,7 @@
<modules>
<module>event-bus-core</module>
<module>event-bus-ap</module>
<module>event-bus-proc</module>
</modules>
<licenses>
@ -94,4 +94,4 @@
</plugins>
</build>
</project>
</project>