Skip to content

Commit

Permalink
Remove the ${project.baseUri}
Browse files Browse the repository at this point in the history
  • Loading branch information
gnodet committed Dec 22, 2024
1 parent 2b7e9f5 commit 5a3980b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@ void testProjectDir() throws Exception {
List<String> urls = verifier.loadLogLines().stream()
.filter(s -> s.contains("<url>" + basedir.resolve("repo").toUri() + "</url>"))
.toList();
assertEquals(5, urls.size());
assertEquals(4, urls.size());
}
}
6 changes: 1 addition & 5 deletions its/core-it-suite/src/test/resources/mng-8465/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,10 @@
</repository>
<repository>
<id>test3</id>
<url>${project.baseUri}repo</url>
</repository>
<repository>
<id>test4</id>
<url>file://${project.rootDirectory}/repo</url>
</repository>
<repository>
<id>test5</id>
<id>test4</id>
<url>${project.rootDirectory.uri}repo</url>
</repository>
</repositories>
Expand Down

0 comments on commit 5a3980b

Please sign in to comment.