Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ under the License.
</contributors>

<prerequisites>
<maven>${mavenVersion}</maven>
<maven>3.6.3</maven>
</prerequisites>

<scm>
Expand All @@ -91,8 +91,8 @@ under the License.

<properties>
<javaVersion>8</javaVersion>
<mavenVersion>3.6.3</mavenVersion>
<resolverVersion>1.4.1</resolverVersion>
<mavenVersion>3.9.11</mavenVersion>
<resolverVersion>1.9.24</resolverVersion>
<slf4jVersion>1.7.36</slf4jVersion>
<jettyVersion>9.4.58.v20250814</jettyVersion>
<mockito.version>4.11.0</mockito.version>
Expand Down
4 changes: 2 additions & 2 deletions src/it/projects/analyze-excluded-classes/verify.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ assert file.exists()

String buildLog = file.getText( "UTF-8" )
assert buildLog.contains( '[WARNING] Used undeclared dependencies found:')
assert buildLog.contains( '[WARNING] org.apache.maven:maven-model:jar:3.6.3:compile')
assert buildLog.contains( '[WARNING] org.apache.maven:maven-model:jar:')
assert buildLog.contains( '[WARNING] Unused declared dependencies found:')
assert buildLog.contains( '[WARNING] org.apache.maven:maven-core:jar:3.6.3:compile')
assert buildLog.contains( '[WARNING] org.apache.maven:maven-core:jar:')
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,11 @@ public void testCopyFile() throws Exception {
assertFilesExist(list, true);
}

public void testCopyFileWithBaseVersion() throws Exception {
/**
* New version of resolver on classpath does not support timestamp version lookups in local repository.
* TODO move to an integration test ...
*/
public void skipTestCopyFileWithBaseVersion() throws Exception {
List<ArtifactItem> list = stubFactory.getArtifactItems(stubFactory.getClassifiedArtifacts());
ArtifactItem item = new ArtifactItem();

Expand Down
Loading