Skip to content

Commit bff5f82

Browse files
SentryManrbygrave
andauthored
Fix module import resolution (#39)
* fix import resolution * Update pom.xml --------- Co-authored-by: Rob Bygrave <[email protected]>
1 parent 548caa5 commit bff5f82

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

avaje-spi-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<tag>HEAD</tag>
1414
</scm>
1515
<properties>
16-
<avaje.prisms.version>1.36</avaje.prisms.version>
16+
<avaje.prisms.version>1.39</avaje.prisms.version>
1717
</properties>
1818

1919
<dependencies>

blackbox-test-spi/src/main/java/module-info.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import io.avaje.spi.test.SPIInterface;
2-
import io.avaje.spi.test.CommonClass2;
2+
import io.avaje.spi.test.SPIInterface.DefaultSPIInterface;
33

44
module io.avaje.spi.blackbox {
55
requires io.avaje.inject;
@@ -12,7 +12,7 @@
1212
io.avaje.spi. test.CommonClass2,
1313
io.avaje.spi. test.CommonClass3
1414
, io . avaje . spi . test . ManualSPI,
15-
io.avaje.spi.test.SPIInterface.DefaultSPIInterface
15+
DefaultSPIInterface
1616
;
1717
exports io.avaje.spi.test;
1818

0 commit comments

Comments
 (0)