-
Notifications
You must be signed in to change notification settings - Fork 82
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Microservice example in Adobe experience manager #123
Comments
Some progress when I added org.apache.aries.javax.jax.rs-api <dependency>
<groupId>org.osgi</groupId>
<artifactId>osgi.core</artifactId>
<version>7.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>osgi.cmpn</artifactId>
<version>7.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>osgi.annotation</artifactId>
<version>7.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.service.component.annotations</artifactId>
<version>1.4.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.service.metatype.annotations</artifactId>
<version>1.4.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.service.component</artifactId>
<version>1.4.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.aries.spec</groupId>
<artifactId>org.apache.aries.javax.jax.rs-api</artifactId>
<version>1.0.4</version>
<scope>provided</scope>
</dependency> But my bundle can't be started cause of (osgi.implementation=osgi.jaxrs)(version>=1.0.0)(!(version>=2.0.0)))
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
a question, which dependencies I should use to be able to use OSGi R7 JAX RS in AEM? I would like to try out this example https://enroute.osgi.org/examples/020-examples-microservice.html
I tried with
org.osgi:osgi.core 7.0.0
org.osgi:osgi.cmpn 7.0.0
org.osgi:osgi.annotation 7.0.0
org.osgi:org.osgi.service.component.annotations 1.4.0
org.osg:org.osgi.service.metatype.annotations 1.4.0
org.osgi.service.component:1.4.0
javax.ws.rs: javax.ws.rs-api 2.1.1
also this combination
org.osgi.enroute:osgi-api 7.0.0
org.osgi.enroute:enterprise-api 7.0.0
javax.ws.rs: javax.ws.rs-api 2.1.1
Is it javax.ws.rs code wrapped in some of OSGi dependency or should be added as a separated dependency? When I add it as separated dep. then can't be resolved
The text was updated successfully, but these errors were encountered: