Github user lewismc commented on a diff in the pull request:
https://github.com/apache/jena/pull/474#discussion_r221785452
--- Diff: jena-jdbc/jena-jdbc-core/pom.xml ---
@@ -39,17 +39,28 @@
<version>3.10.0-SNAPSHOT</version>
</dependency>
- <!-- Jena Driver configures Log4j directly -->
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-log4j12</artifactId>
- </dependency>
+ <!-- Jena Driver configures Log4j directly -->
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-log4j12</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>log4j</groupId>
+ <artifactId>log4j</artifactId>
+ </dependency>
+
+ <dependency>
--- End diff --
This being said, what would you rather see? This issue is titled _Jena
master does not build under JDK10_ so I wonder if getting Jena to build under
JDK 10 is the immediate response. Someone can then go and work on the
underlying logging issue. Right now I have not investigated it enough or else I
would have provided the fix.
---