Hello, what happens is that I'm developing a code that asks me to install a package to implement it, this package is called: flying-saucer-pdf
To install it I need to add it through maven to my pom.xml file, the pom.xml file is located in the path:
core > pom.xml of the project.
What happens is that when running the build locally it throws the following error:
[org.xhtmlrenderer.pdf, com.lowagie.text] in start level 20 but no bundle is exporting these for that start level.
This is the dependency I use:
<dependencies>
<dependency>
<groupId>org.xhtmlrenderer</groupId>
<artifactId>flying-saucer-pdf</artifactId>
<version>9.1.22</version>
</dependency>
</dependencies>
What can I do to solve it, I have seen several cases with different solutions but none of them help me, I am doing all this at the project code level, I am not allowed to use the crxde UI or similar.
Am I installing the maven in the correct pom.xml or is there something I am doing wrong?
Solved! Go to Solution.
Views
Replies
Total Likes
No, but I found the solution, what I need to do is first of all in the pom.xml file from core folder add the dependency as the following way:
@Aaron_Dempwolff is your external dependency flying-saucer-pdf osgi compatible? If yes you need to add that dependency to your all package similar to core dependency.
If that external dependency is not OSGI compatible, you create one.
https://aemconcepts.com/aem-osgi/use-3rd-party-api-or-jar-or-dependency-in-aem/
Revsolve External Dependencies in AEMaCS
https://www.linkedin.com/pulse/revsolve-external-dependencies-aemacs-arunkumar-papena?utm_source=sha...
Hello, how can I know if my dependency is compatible with osgi, I got it from the official maven repository.
https://mvnrepository.com/artifact/org.xhtmlrenderer/flying-saucer-pdf/9.1.22
By the way I tried the first link documentation and even doing all the steps I still have the same issue:
[requirements-capabilities] com.tfs:aem-tfs-project.common-core:0.0.1-SNAPSHOT: Artifact com.tfs:aem-tfs-project.common-core:0.0.1-SNAPSHOT requires [com.tfs.aem-tfs-project.common-core/0.0.1.SNAPSHOT] osgi.ee; filter:="(&(osgi.ee=JavaSE)(version=17))" in start level 20 but no artifact is providing a matching capability in this start level. (com.tfs:aem-tfs-project.all:0.0.1-SNAPSHOT)
Hi @Aaron_Dempwolff Maybe you can : the error could be Missing Dependency or incorrect version or dependency not available during speficied start level.
Checks if all the requirements declarations made in OSGi bundles are satisfied by the capabilities declarations of other bundles included in the Maven project.
An error would look like this:
[ERROR] org.acme:mybundle:0.0.1-SNAPSHOT: Artifact org.acme:mybundle:0.0.1-SNAPSHOT requires org.foo.bar in start level 20 but no artifact is providing a matching capability in this start level.
To troubleshoot, look at the manifest of the bundle that you would expect to be declaring a capability to determine why it is missing, or check in the manifest of the requiring bundle to see that the requirement in there is correct.
AEM as a Cloud Service SDK Build Analyzer Maven Plugin | Adobe Experience Manager
@Aaron_Dempwolff Did you find the suggestions from users helpful? Please let us know if more information is required. Otherwise, please mark the answer as correct for posterity. If you have found out solution yourself, please share it with the community.
Views
Replies
Total Likes
No, but I found the solution, what I need to do is first of all in the pom.xml file from core folder add the dependency as the following way:
Views
Likes
Replies
Views
Likes
Replies