Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Fixing spaces in verify, adding author info, cleaning up javadoc line…
… lengths
  • Loading branch information
ldhardy committed Jun 24, 2024
commit 60e582becd504e165a775ae0f58f846fcfd9b005
3 changes: 3 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ under the License.
<contributor>
<name>Maarten Mulders</name>
</contributor>
<contributor>
<name>Lisa Hardy</name>
</contributor>
</contributors>

<prerequisites>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ assert file.exists()
String buildLog = file.getText( "UTF-8" )

// Make sure non-exluded explicit dependencies are resolved
assert buildLog.contains( ' Resolved dependency: slf4j-simple-2.0.13.jar ' )
assert buildLog.contains( ' Resolved dependency: slf4j-api-2.0.13.jar ' )
assert buildLog.contains( 'Resolved dependency: slf4j-simple-2.0.13.jar' )
assert buildLog.contains( 'Resolved dependency: slf4j-api-2.0.13.jar' )

// Did group excludes work?
assert !buildLog.contains( 'Resolving artifact skip.this.groupid' )
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,9 @@ public abstract class AbstractDependencyFilterMojo extends AbstractDependencyMoj

/**
* Scope threshold to exclude, if no value is defined for include.
* An empty string indicates no dependencies (default). Unlike the other exclusion parameters,
* does not support a comma-delimited list of scope exclusions. Just one scope may be excluded at a time.<br>
* An empty string indicates no dependencies (default). Unlike the other
* exclusion parameters, this property does not support a comma-delimited
* list of scope exclusions. Just one scope may be excluded at a time.<br>
* The scope threshold value being interpreted is the scope as
* Maven filters for creating a classpath, not as specified in the pom. In summary:
* <ul>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
*
* @author <a href="mailto:[email protected]">Brian Fox</a>
* @author Maarten Mulders
* @author Lisa Hardy
* @since 2.0
*/
@Mojo(name = "go-offline", threadSafe = true)
Expand Down