Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions maven-resolver-tools/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,8 @@
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-nop</artifactId>
<scope>runtime</scope>
<artifactId>slf4j-simple</artifactId>
<scope>test</scope>
</dependency>

<!-- Test -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ private static List<File> resolveClasspath() {
* Reads back the intermediate properties file produced by {@link ConfigurationCollectorDoclet} into the list of
* maps consumed by the Velocity templates.
*/
protected List<Map<String, String>> readDiscoveredKeys(Path intermediateFile) throws Exception {
static List<Map<String, String>> readDiscoveredKeys(Path intermediateFile) throws Exception {
Properties properties = new Properties();
try (Reader reader = Files.newBufferedReader(intermediateFile, StandardCharsets.UTF_8)) {
properties.load(reader);
Expand Down
Loading
Loading