diff --git a/tycho-core/src/main/java/org/eclipse/tycho/core/resolver/DefaultTargetPlatformConfigurationReader.java b/tycho-core/src/main/java/org/eclipse/tycho/core/resolver/DefaultTargetPlatformConfigurationReader.java
index 8dbc94c21b..176fac7edd 100644
--- a/tycho-core/src/main/java/org/eclipse/tycho/core/resolver/DefaultTargetPlatformConfigurationReader.java
+++ b/tycho-core/src/main/java/org/eclipse/tycho/core/resolver/DefaultTargetPlatformConfigurationReader.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2008, 2022 Sonatype Inc. and others.
+ * Copyright (c) 2008, 2024 Sonatype Inc. and others.
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
@@ -333,10 +333,10 @@ private void setBREEHeaderSelectionPolicy(TargetPlatformConfiguration result, Xp
/**
* Take the constraints of the configured execution environment into account when resolving
- * dependencies or target definitions. These constraints include the list of system packages and
- * the Bundle-RequiredExecutionEnvironment header. When set to true
, the
- * dependency resolution verifies that the bundle and all required bundles can be used in an
- * OSGi container with the configured execution environment.
+ * dependencies or target definitions. These constraints include the list of system packages and the
+ * Bundle-RequiredExecutionEnvironment header. When set to true
, the
+ * dependency resolution verifies that the bundle and all required bundles can be used in an OSGi
+ * container with the configured execution environment.
*/
private void setResolveWithEEContraints(TargetPlatformConfiguration result, Xpp3Dom resolverDom) {
String value = getStringValue(resolverDom.getChild(RESOLVE_WITH_EXECUTION_ENVIRONMENT_CONSTRAINTS));
@@ -384,7 +384,7 @@ private void addTargetEnvironments(TargetPlatformConfiguration result, MavenProj
}
}
if (!skipped.isEmpty()) {
- logger.info(MessageFormat.format(
+ logger.debug(MessageFormat.format(
"Declared TargetEnvironment(s) {0} are skipped for {1} as they do not match the project filter {2}.",
skipped.stream().map(TargetEnvironment::toFilterProperties).map(String::valueOf)
.collect(Collectors.joining(", ")),
@@ -594,9 +594,9 @@ private static String getStringValue(Xpp3Dom element) {
*
* @param project
* @param targetFile
- * the target file to check
+ * the target file to check
* @param otherTargetFiles
- * other target files to take into account
+ * other target files to take into account
* @return true
if the target file is the primary artifact, false
* otherwise
*/