Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Jakub Stejskal <[email protected]>
  • Loading branch information
Frawless committed Feb 6, 2024
1 parent 91aa381 commit 490d2dd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
6 changes: 6 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@
<sonatype.nexus.staging>1.6.7</sonatype.nexus.staging>
<maven.javadoc.version>3.4.1</maven.javadoc.version>
<maven.assembly.version>3.4.2</maven.assembly.version>
<maven.plugin.plugin.version>3.9.0</maven.plugin.plugin.version>
</properties>

<dependencyManagement>
Expand Down Expand Up @@ -106,6 +107,11 @@
<!-- </execution>-->
<!-- </executions>-->
<!-- </plugin>-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<version>${maven.plugin.plugin.version}</version>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>${maven.source.plugin.version}</version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,9 @@ public void execute() throws MojoExecutionException, MojoFailureException {
e.printStackTrace();
}

getLog().debug("Loaded files in classpath:");
for (URL url : classRealm.getURLs()) {
getLog().info(url.getFile());
getLog().debug(url.getFile());
}

Map<String, String> classes = getTestClassesWithTheirPath(filePath, generatePath);
Expand Down

0 comments on commit 490d2dd

Please sign in to comment.