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

This commit is contained in:
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"?> <?xml version="1.0" encoding="UTF-8"?>
<projectDescription> <projectDescription>
<name>event-bus-ap</name> <name>event-bus-proc</name>
<comment></comment> <comment></comment>
<projects> <projects>
</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"> 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> <modelVersion>4.0.0</modelVersion>
<artifactId>event-bus-ap</artifactId> <artifactId>event-bus-proc</artifactId>
<name>Event Bus Annotation Processor</name> <name>Event Bus Annotation Processor</name>
<description>Annotation processor checking for errors related to the @Event annotation from Event Bus.</description> <description>Annotation processor checking for errors related to the @Event annotation from Event Bus.</description>
@ -28,6 +28,8 @@
<testSourceDirectory /> <testSourceDirectory />
<plugins> <plugins>
<!-- Prevent annotation processing error during compilation -->
<plugin> <plugin>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<configuration> <configuration>
@ -35,6 +37,7 @@
</configuration> </configuration>
</plugin> </plugin>
<!-- Include event-bus-core classes into JAR -->
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId> <artifactId>maven-shade-plugin</artifactId>
@ -54,4 +57,4 @@
</plugins> </plugins>
</build> </build>
</project> </project>

View File

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

View File

@ -4,4 +4,4 @@
* @author Kai S. K. Engelbart * @author Kai S. K. Engelbart
* @since 1.0.0 * @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> <modules>
<module>event-bus-core</module> <module>event-bus-core</module>
<module>event-bus-ap</module> <module>event-bus-proc</module>
</modules> </modules>
<licenses> <licenses>
@ -94,4 +94,4 @@
</plugins> </plugins>
</build> </build>
</project> </project>