Skip to content

Commit a20c74f

Browse files
authoredAug 22, 2023
Add module-info through moditect (#254)
1 parent 1293ac3 commit a20c74f

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
 

‎pom.xml

+27
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,33 @@
182182
</execution>
183183
</executions>
184184
</plugin>
185+
<plugin>
186+
<groupId>org.moditect</groupId>
187+
<artifactId>moditect-maven-plugin</artifactId>
188+
<version>1.0.0.Final</version>
189+
<executions>
190+
<execution>
191+
<id>add-module-infos</id>
192+
<phase>package</phase>
193+
<goals>
194+
<goal>add-module-info</goal>
195+
</goals>
196+
<configuration>
197+
<jvmVersion>9</jvmVersion>
198+
<module>
199+
<moduleInfo>
200+
<name>org.fusesource.jansi</name>
201+
<exports>
202+
org.fusesource.jansi;
203+
org.fusesource.jansi.io;
204+
</exports>
205+
</moduleInfo>
206+
</module>
207+
</configuration>
208+
</execution>
209+
</executions>
210+
</plugin>
211+
185212
<plugin>
186213
<groupId>org.codehaus.mojo</groupId>
187214
<artifactId>exec-maven-plugin</artifactId>

0 commit comments

Comments
 (0)
Please sign in to comment.