Skip to content

Commit

Permalink
Bump guava in IT test
Browse files Browse the repository at this point in the history
  • Loading branch information
slawekjaranowski committed Aug 15, 2022
1 parent f85967a commit 66abd16
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/it/projects/flatten-shaded-drp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>16.0.1</version>
<version>31.1-jre</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-archiver</artifactId>
<version>2.5</version>
<version>3.6.0</version>
</dependency>
</dependencies>

Expand Down
4 changes: 2 additions & 2 deletions src/it/projects/flatten-shaded-drp/verify.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ assert 1 == flattendProject.dependencies.dependency.size()
def archiver = flattendProject.dependencies.dependency.find {
it.groupId == 'org.apache.maven' && it.artifactId == 'maven-archiver'
}
assert '2.5' == archiver.version.text()
assert '3.6.0' == archiver.version.text()
assert 'compile' == archiver.scope.text()

assert 0 == flattendProject.build.size()
assert 0 == flattendProject.profiles.size()
assert 0 == flattendProject.pluginRepositories.size()
assert 0 == flattendProject.pluginRepositories.size()

0 comments on commit 66abd16

Please sign in to comment.