Shorten Module Names #30

Merged
kske merged 1 commits from f/improve-project-structure into develop 2021-12-24 13:57:17 +01:00
31 changed files with 2 additions and 2 deletions

View File

@ -13,8 +13,8 @@
<url>https://git.kske.dev/kske/event-bus</url>
<modules>
<module>event-bus-core</module>
Review

Am I right to assume that you can (still) call the modules using

<dependency>
	<groupId>dev.kske</groupId>
    <artifactId>event-bus-$MODULE_NAME</artifactId>
</dependency>

or do I see that incorrectly?

Am I right to assume that you can (still) call the modules using ```xml <dependency> <groupId>dev.kske</groupId> <artifactId>event-bus-$MODULE_NAME</artifactId> </dependency> ``` or do I see that incorrectly?
Review

Exactly. The artifact IDs stay the same. It is only the module name (and therefore the directory) that has changed.

Exactly. The artifact IDs stay the same. It is only the module name (and therefore the directory) that has changed.
<module>event-bus-proc</module>
<module>core</module>
<module>proc</module>
</modules>
<licenses>