Skip to content

Commit ec1aaf2

Browse files
authored
Merge pull request #508 from dmlloyd/gen-svc
2 parents 1ec763d + 0a91cb7 commit ec1aaf2

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

pom.xml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,13 +302,19 @@
302302
<plugin>
303303
<groupId>io.github.dmlloyd.maven</groupId>
304304
<artifactId>module-services-plugin</artifactId>
305-
<version>1.0</version>
305+
<version>1.1</version>
306306
<executions>
307307
<execution>
308308
<id>generate-services</id>
309309
<goals>
310310
<goal>generate</goal>
311311
</goals>
312+
<configuration>
313+
<excludeServices>
314+
<!-- Modular impl is different from non-modular impl -->
315+
<excludeService>java.util.logging.LogManager</excludeService>
316+
</excludeServices>
317+
</configuration>
312318
</execution>
313319
</executions>
314320
</plugin>
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# In class path mode, we use LogManager itself; in module mode we use LogManager.Provider instead
2+
org.jboss.logmanager.LogManager

0 commit comments

Comments
 (0)