Skip to content

Commit

Permalink
Merge pull request #2 from senivam/docletRefactoring
Browse files Browse the repository at this point in the history
OSGi example fix

Signed-off-by: Jorge Bescos Gascon <[email protected]>
  • Loading branch information
jbescos committed Jul 21, 2021
2 parents c2beaa1 + a542dc1 commit 3309d16
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions examples/osgi-helloworld-webapp/functional-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,11 @@
</dependency>

<!-- JUnit and Pax-Exam dependencies -->
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.service.cm</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.ops4j.pax.exam</groupId>
<artifactId>pax-exam-junit4</artifactId>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2010, 2018 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2010, 2021 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0, which is available at
Expand Down Expand Up @@ -37,6 +37,7 @@ public class WebAppFelixTest extends AbstractWebAppTest {
@Override
public List<Option> osgiRuntimeOptions() {
return Arrays.asList(CoreOptions.options(
mavenBundle().groupId("org.osgi").artifactId("org.osgi.service.cm").versionAsInProject(),
mavenBundle()
.groupId("org.apache.felix").artifactId("org.apache.felix.eventadmin")
.versionAsInProject()
Expand Down

0 comments on commit 3309d16

Please sign in to comment.