Skip to content

Commit

Permalink
#1109 Manage dependencies and plugins in parent project
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverlietz committed Mar 22, 2024
1 parent d902b21 commit 801bcd8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ public Option[] createConfiguration() {
.library(maven("org.ops4j.pax.exam", "pax-exam-spring", getPaxExamVersion()))
.library(maven("org.ops4j.pax.exam", "pax-exam", getPaxExamVersion()))
.library(maven("org.ops4j.base", "ops4j-base-spi", getOps4jBaseVersion()))
.library(maven("junit", "junit", "4.9")));
.library(maven().groupId("junit").artifactId("junit").versionAsInProject())
);
}

@Before
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,9 @@ public Option[] createConfiguration() {
.library(maven("org.ops4j.pax.exam", "pax-exam-spring", getPaxExamVersion()))
.library(maven("org.ops4j.pax.exam", "pax-exam", getPaxExamVersion()))
.library(maven("org.ops4j.base", "ops4j-base-spi", getOps4jBaseVersion()))
.library(maven("org.hamcrest", "hamcrest-core", "1.3"))
.library(maven("junit", "junit", "4.12")));
.library(maven().groupId("org.hamcrest").artifactId("hamcrest-core").versionAsInProject())
.library(maven().groupId("junit").artifactId("junit").versionAsInProject())
);
}

@Before
Expand Down

0 comments on commit 801bcd8

Please sign in to comment.