Skip to content

Commit c9d0d18

Browse files
committed
Fix module path
1 parent 3524f6e commit c9d0d18

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

ebean-datasource/pom.xml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,18 @@
8989
<version>11.5.9.0</version>
9090
<scope>test</scope>
9191
</dependency>
92-
9392
</dependencies>
93+
<build>
94+
<plugins>
95+
<plugin>
96+
<groupId>org.apache.maven.plugins</groupId>
97+
<artifactId>maven-compiler-plugin</artifactId>
98+
<configuration>
99+
<!-- required, because DB2 driver has dependency to javax.naming -->
100+
<useModulePath>false</useModulePath>
101+
</configuration>
102+
</plugin>
103+
</plugins>
104+
</build>
94105

95106
</project>

0 commit comments

Comments
 (0)