Skip to content

Commit

Permalink
Merge pull request #128 from dmlloyd/mi
Browse files Browse the repository at this point in the history
Move to a regular module descriptor
  • Loading branch information
dmlloyd authored Oct 15, 2024
2 parents a0df73c + c646f3b commit 67bf83e
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 26 deletions.
14 changes: 0 additions & 14 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -153,20 +153,6 @@
<legacyMode>true</legacyMode>
</configuration>
</plugin>
<plugin>
<groupId>io.github.dmlloyd.module-info</groupId>
<artifactId>module-info</artifactId>
<version>2.1</version>
<executions>
<execution>
<id>module-info</id>
<phase>process-classes</phase>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
Expand Down
18 changes: 18 additions & 0 deletions src/main/java/module-info.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
module org.wildfly.common {
requires java.compiler;
requires java.xml;
requires java.transaction.xa;
requires java.sql;

requires io.smallrye.common.cpu;
requires io.smallrye.common.expression;
requires io.smallrye.common.net;
requires io.smallrye.common.os;
requires io.smallrye.common.ref;

requires org.jboss.logging;

requires static io.smallrye.common.function;

requires static org.jboss.logging.annotations;
}
12 changes: 0 additions & 12 deletions src/main/java/module-info.yml

This file was deleted.

0 comments on commit 67bf83e

Please sign in to comment.