Skip to content

Commit f05acd7

Browse files
yegor256claude
andcommitted
feat(pom): upgrade qulice to 0.31.1
Bump qulice-maven-plugin from 0.30.13 to 0.31.1 and drop the Javadoc from private methods, as the new NoJavadocForPrivateMethodsCheck demands Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
1 parent c341cfd commit f05acd7

2 files changed

Lines changed: 1 addition & 16 deletions

File tree

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
<plugin>
8888
<groupId>com.qulice</groupId>
8989
<artifactId>qulice-maven-plugin</artifactId>
90-
<version>0.30.13</version>
90+
<version>0.31.1</version>
9191
</plugin>
9292
</plugins>
9393
</build>

src/main/java/org/eolang/jucs/JucsProvider.java

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,6 @@ public Stream<? extends Arguments> provideArguments(
5555
return this.yamls("", params.getAll().size() > 1).stream();
5656
}
5757

58-
/**
59-
* Find all YAMLs recursively on classpath.
60-
* @param prefix Prefix (empty when it starts)
61-
* @param withpath Whether to include the classpath path as a second argument
62-
* @return The list of full paths
63-
*/
6458
private Collection<Arguments> yamls(final String prefix, final boolean withpath) {
6559
final Collection<Arguments> out = new ArrayList<>(0);
6660
final String home = String.format("%s/%s", this.sanitized(), prefix);
@@ -94,19 +88,10 @@ private Collection<Arguments> yamls(final String prefix, final boolean withpath)
9488
return out;
9589
}
9690

97-
/**
98-
* Normalize path to use forward slashes on all platforms.
99-
* @param path The path to normalize
100-
* @return The normalized path string
101-
*/
10291
private static String normalize(final Path path) {
10392
return path.toString().replace('\\', '/');
10493
}
10594

106-
/**
107-
* Get sanitized home path.
108-
* @return The path without front and tailing slashes
109-
*/
11095
private String sanitized() {
11196
final String path = this.annotation.value();
11297
int begin = 0;

0 commit comments

Comments
 (0)