Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@
}
if (causeOfRebuild != null) {
if (!sourceFiles.isEmpty()) { // Avoid misleading message such as "all sources changed".
logger.info(causeOfRebuild);
logger.debug(causeOfRebuild);
}
} else {
isPartialBuild = true;
Expand Down Expand Up @@ -617,7 +617,7 @@
if (moduleNameFromPackageHierarchy == null) {
detected = DirectoryHierarchy.PACKAGE;
} else {
detected = DirectoryHierarchy.PACKAGE_WITH_MODULE;

Check warning on line 620 in src/main/java/org/apache/maven/plugin/compiler/ToolExecutor.java

View workflow job for this annotation

GitHub Actions / Verify / ubuntu-latest jdk-17-zulu 4.0.0-rc-4

PACKAGE_WITH_MODULE in org.apache.maven.plugin.compiler.DirectoryHierarchy has been deprecated

Check warning on line 620 in src/main/java/org/apache/maven/plugin/compiler/ToolExecutor.java

View workflow job for this annotation

GitHub Actions / Verify / ubuntu-latest jdk-25-temurin 4.0.0-rc-4

PACKAGE_WITH_MODULE in org.apache.maven.plugin.compiler.DirectoryHierarchy has been deprecated

Check warning on line 620 in src/main/java/org/apache/maven/plugin/compiler/ToolExecutor.java

View workflow job for this annotation

GitHub Actions / Verify / macos-latest jdk-21-zulu 4.0.0-rc-4

PACKAGE_WITH_MODULE in org.apache.maven.plugin.compiler.DirectoryHierarchy has been deprecated

Check warning on line 620 in src/main/java/org/apache/maven/plugin/compiler/ToolExecutor.java

View workflow job for this annotation

GitHub Actions / Verify / macos-latest jdk-21-microsoft 4.0.0-rc-4

PACKAGE_WITH_MODULE in org.apache.maven.plugin.compiler.DirectoryHierarchy has been deprecated

Check warning on line 620 in src/main/java/org/apache/maven/plugin/compiler/ToolExecutor.java

View workflow job for this annotation

GitHub Actions / Verify / macos-latest jdk-21-adopt-openj9 4.0.0-rc-4

PACKAGE_WITH_MODULE in org.apache.maven.plugin.compiler.DirectoryHierarchy has been deprecated

Check warning on line 620 in src/main/java/org/apache/maven/plugin/compiler/ToolExecutor.java

View workflow job for this annotation

GitHub Actions / Verify / ubuntu-latest jdk-21-temurin 4.0.0-rc-4

PACKAGE_WITH_MODULE in org.apache.maven.plugin.compiler.DirectoryHierarchy has been deprecated

Check warning on line 620 in src/main/java/org/apache/maven/plugin/compiler/ToolExecutor.java

View workflow job for this annotation

GitHub Actions / Verify / ubuntu-latest jdk-21-adopt-openj9 4.0.0-rc-4

PACKAGE_WITH_MODULE in org.apache.maven.plugin.compiler.DirectoryHierarchy has been deprecated

Check warning on line 620 in src/main/java/org/apache/maven/plugin/compiler/ToolExecutor.java

View workflow job for this annotation

GitHub Actions / Verify / ubuntu-latest jdk-25-zulu 4.0.0-rc-4

PACKAGE_WITH_MODULE in org.apache.maven.plugin.compiler.DirectoryHierarchy has been deprecated

Check warning on line 620 in src/main/java/org/apache/maven/plugin/compiler/ToolExecutor.java

View workflow job for this annotation

GitHub Actions / Verify / ubuntu-latest jdk-21-zulu 4.0.0-rc-4

PACKAGE_WITH_MODULE in org.apache.maven.plugin.compiler.DirectoryHierarchy has been deprecated

Check warning on line 620 in src/main/java/org/apache/maven/plugin/compiler/ToolExecutor.java

View workflow job for this annotation

GitHub Actions / Verify / macos-latest jdk-25-temurin 4.0.0-rc-4

PACKAGE_WITH_MODULE in org.apache.maven.plugin.compiler.DirectoryHierarchy has been deprecated

Check warning on line 620 in src/main/java/org/apache/maven/plugin/compiler/ToolExecutor.java

View workflow job for this annotation

GitHub Actions / Verify / macos-latest jdk-21-temurin 4.0.0-rc-4

PACKAGE_WITH_MODULE in org.apache.maven.plugin.compiler.DirectoryHierarchy has been deprecated

Check warning on line 620 in src/main/java/org/apache/maven/plugin/compiler/ToolExecutor.java

View workflow job for this annotation

GitHub Actions / Verify / macos-latest jdk-25-zulu 4.0.0-rc-4

PACKAGE_WITH_MODULE in org.apache.maven.plugin.compiler.DirectoryHierarchy has been deprecated

Check warning on line 620 in src/main/java/org/apache/maven/plugin/compiler/ToolExecutor.java

View workflow job for this annotation

GitHub Actions / Verify / ubuntu-latest jdk-21-microsoft 4.0.0-rc-4

PACKAGE_WITH_MODULE in org.apache.maven.plugin.compiler.DirectoryHierarchy has been deprecated
}
} else {
if (moduleNameFromPackageHierarchy == null) {
Expand Down
Loading