You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: gradle/api-gradle-embedded-archive/src/main/java/org/jboss/shrinkwrap/api/gradle/archive/importer/embedded/ConfigurationStage.java
+2-2
Original file line number
Diff line number
Diff line change
@@ -27,15 +27,15 @@ public interface ConfigurationStage extends BuildStage {
Copy file name to clipboardexpand all lines: maven/api-maven-archive/src/main/java/org/jboss/shrinkwrap/resolver/api/maven/archive/importer/MavenImporter.java
Copy file name to clipboardexpand all lines: maven/api-maven-archive/src/main/java/org/jboss/shrinkwrap/resolver/api/maven/archive/importer/PomlessMavenImporter.java
Copy file name to clipboardexpand all lines: maven/api-maven-embedded/src/main/java/org/jboss/shrinkwrap/resolver/api/maven/embedded/DistributionStage.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -58,7 +58,7 @@ public interface DistributionStage<NEXT_STEP extends BuildStage<DAEMON_TRIGGER_T
58
58
NEXT_STEPuseInstallation(FilemavenHome);
59
59
60
60
/**
61
-
* Use default Maven distribution with version {@link DEFAULT_MAVEN_VERSION}.
61
+
* Use default Maven distribution with version {@value DEFAULT_MAVEN_VERSION}.
Copy file name to clipboardexpand all lines: maven/api-maven-embedded/src/main/java/org/jboss/shrinkwrap/resolver/api/maven/embedded/pom/equipped/ConfigurationStage.java
+4-4
Original file line number
Diff line number
Diff line change
@@ -79,7 +79,7 @@ public interface ConfigurationStage<DIST_OR_CONFIG extends ConfigurationStage<Co
79
79
* Sets the failure mode of the Maven invocation. Equivalent of {@code -ff} and {@code --fail-fast}, {@code -fae}
80
80
* and {@code --fail-at-end}, {@code -fn} and {@code --fail-never}
81
81
*
82
-
* @param failureBehavior The failure mode, must be one of {@link InvocationRequest.ReactorFailureBehavior#FailFast},
82
+
* @param reactorFailureBehavior The failure mode, must be one of {@link InvocationRequest.ReactorFailureBehavior#FailFast},
83
83
* {@link InvocationRequest.ReactorFailureBehavior#FailAtEnd} and {@link InvocationRequest.ReactorFailureBehavior#FailNever}.
84
84
* @return Modified instance of EmbeddedMaven
85
85
*/
@@ -259,7 +259,7 @@ public interface ConfigurationStage<DIST_OR_CONFIG extends ConfigurationStage<Co
259
259
/**
260
260
* Sets the recursion behavior of a reactor invocation. Inverse equivalent of -N and --non-recursive
261
261
*
262
-
* @param recursive true if sub modules should be build, false otherwise.
262
+
* @param recursive true if submodules should be built, false otherwise.
263
263
* @return Modified instance of EmbeddedMaven
264
264
*/
265
265
DIST_OR_CONFIGsetRecursive(booleanrecursive);
@@ -292,7 +292,7 @@ public interface ConfigurationStage<DIST_OR_CONFIG extends ConfigurationStage<Co
292
292
/**
293
293
* Thread count, for instance 2.0C where C is core multiplied Equivalent of -T or --threads
294
294
*
295
-
* @param threads the threadcount
295
+
* @param threads the thread count
296
296
* @return Modified instance of EmbeddedMaven
297
297
*/
298
298
DIST_OR_CONFIGsetThreads(Stringthreads);
@@ -338,7 +338,7 @@ public interface ConfigurationStage<DIST_OR_CONFIG extends ConfigurationStage<Co
338
338
DIST_OR_CONFIGsetResumeFrom(StringresumeFrom);
339
339
340
340
/**
341
-
* Sets if the build output shold be in the quiet mode or not.
341
+
* Sets if the build output should be in the quiet mode or not.
342
342
* It means that the output will not be printed on standard output, but it will be accessible via the
343
343
* {@link BuiltProject#getMavenLog()}. Default is false
Copy file name to clipboardexpand all lines: maven/api-maven/src/main/java/org/jboss/shrinkwrap/resolver/api/maven/ConfigurableMavenResolverSystemBase.java
+4-4
Original file line number
Diff line number
Diff line change
@@ -61,7 +61,7 @@ public interface ConfigurableMavenResolverSystemBase<UNCONFIGURABLERESOLVERSYSTE
61
61
*
62
62
* @param name a unique arbitrary ID such as "codehaus"
63
63
* @param url the repository URL, such as "http://snapshots.maven.codehaus.org/maven2"
64
-
* @param layout the repository layout. Should always be "default" (may be reused one day by Maven with other values).
64
+
* @param layout the repository layout. Should always be "default" (maybe reused one day by Maven with other values).
65
65
* @return Modified instance of {@code PARTIALLYCONFIGUREDRESOLVERSYSTEMTYPE}
66
66
* @throws IllegalArgumentException if name or layout are null or if layout is not "default", or if no url protocol is
67
67
* specified, or an unknown url protocol is found, or url is null
@@ -73,7 +73,7 @@ public interface ConfigurableMavenResolverSystemBase<UNCONFIGURABLERESOLVERSYSTE
73
73
*
74
74
* @param name a unique arbitrary ID such as "codehaus"
75
75
* @param url the repository URL, such as "http://snapshots.maven.codehaus.org/maven2"
76
-
* @param layout the repository layout. Should always be "default" (may be reused one day by Maven with other values).
76
+
* @param layout the repository layout. Should always be "default" (maybe reused one day by Maven with other values).
77
77
* @return Modified instance of {@code PARTIALLYCONFIGUREDRESOLVERSYSTEMTYPE}
0 commit comments