Skip to content

Commit

Permalink
Fix release build
Browse files Browse the repository at this point in the history
* Fully modularize modules which did not previously have `module-info.yml`
* Disable JavaDoc legacy mode
  • Loading branch information
dmlloyd committed Nov 19, 2024
1 parent 1174e0e commit eb81a09
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 30 deletions.
9 changes: 0 additions & 9 deletions classloader/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,6 @@
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>io.github.dmlloyd.module-info</groupId>
<artifactId>module-info</artifactId>
</plugin>
</plugins>
</build>

<profiles>
<profile>
<id>coverage</id>
Expand Down
2 changes: 2 additions & 0 deletions classloader/src/main/java/module-info.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
module io.smallrye.common.classloader {
}
9 changes: 0 additions & 9 deletions io/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,6 @@
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>io.github.dmlloyd.module-info</groupId>
<artifactId>module-info</artifactId>
</plugin>
</plugins>
</build>

<profiles>
<profile>
<id>coverage</id>
Expand Down
2 changes: 2 additions & 0 deletions io/src/main/java/module-info.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
module io.smallrye.common.io {
}
9 changes: 0 additions & 9 deletions os/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,6 @@
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>io.github.dmlloyd.module-info</groupId>
<artifactId>module-info</artifactId>
</plugin>
</plugins>
</build>

<profiles>
<profile>
<id>coverage</id>
Expand Down
2 changes: 2 additions & 0 deletions os/src/main/java/module-info.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
module io.smallrye.common.os {
}
3 changes: 0 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -160,9 +160,6 @@
-->
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<legacyMode>true</legacyMode>
</configuration>
</plugin>
<plugin>
<groupId>io.github.dmlloyd.module-info</groupId>
Expand Down

0 comments on commit eb81a09

Please sign in to comment.