Skip to content

Commit

Permalink
add missing blank in log message
Browse files Browse the repository at this point in the history
  • Loading branch information
Bananeweizen authored and laeubi committed Aug 30, 2024
1 parent 047eede commit b8db018
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public class EclipseRunMojo extends AbstractMojo {
/**
* Dependencies which will be resolved transitively to make up the eclipse
* runtime. Example:
*
*
* <pre>
* &lt;dependencies&gt;
* &lt;dependency&gt;
Expand Down Expand Up @@ -139,7 +139,7 @@ public class EclipseRunMojo extends AbstractMojo {

/**
* p2 repositories which will be used to resolve dependencies. Example:
*
*
* <pre>
* &lt;repositories&gt;
* &lt;repository&gt;
Expand All @@ -161,22 +161,22 @@ public class EclipseRunMojo extends AbstractMojo {
* {@link #jvmArgs} instead because it provides more explicit control over
* argument separation and content, avoiding the need to quote arguments that
* contain spaces.
*
*
* @see #jvmArgs
*/
@Parameter
private String argLine;

/**
* List of JVM arguments set on the command line. Example:
*
*
* {@code
* <jvmArgs>
* <arg>-Xdebug<arg>
* <arg>-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=1044</arg>
* </jvmArgs>
* }
*
*
* @since 0.25.0
*/
@Parameter
Expand All @@ -193,22 +193,22 @@ public class EclipseRunMojo extends AbstractMojo {
* recommended to use {@link #applicationArgs} instead because it provides more
* explicit control over argument separation and content, avoiding the need to
* quote arguments that contain spaces.
*
*
* @see #applicationArgs
*/
@Parameter
private String appArgLine;

/**
* List of applications arguments set on the command line. Example:
*
*
* {@code
* <applicationArgs>
* <arg>-buildfile</arg>
* <arg>build-test.xml</arg>
* </applicationArgs>
* }
*
*
* @since 0.24.0
*/
@Parameter(alias = "applicationsArgs")
Expand Down Expand Up @@ -408,7 +408,7 @@ public void runEclipse(EquinoxInstallation runtime) throws MojoExecutionExceptio
if (returnCode != 0) {
String message = "Error while executing eclipse: return code=" + returnCode;
if (expectedLog.isFile()) {
message += ", see content of " + expectedLog + "for more details.";
message += ", see content of " + expectedLog + " for more details.";
if (log.isDebugEnabled()) {
try {
log.debug(Files.readString(expectedLog.toPath()));
Expand Down

0 comments on commit b8db018

Please sign in to comment.