Error added third party dependency
[ERROR] [api-regions-exportsimports] com.adobe.aem.guides:aem-guides-wknd.core:3.0.0: Bundle aem-guides-wknd.core:3.0
.0 is importing package(s) [com.twilio.type, com.twilio, com.twilio.rest.api.v2010.account, com.twilio.base] in start
level 20 but no bundle is exporting these for that start level. (com.adobe.aem.guides:aem-guides-wknd.all:3.0.0)
I have created a sub-module common-core:-
common-core/pom.xml
<parent>
<groupId>com.adobe.aem.guides</groupId>
<artifactId>aem-guides-wknd</artifactId>
<version>3.0.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>wetraining.common-core</artifactId>
<packaging>bundle</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Import-Package>*;resolution:=optional</Import-Package>
<Export-Package>
com.twilio.sdk.*,
com.twilio.type.*,
com.twilio.*,
com.twilio.rest.api.v2010.account.*,
com.twilio.base.*
</Export-Package>
<Embed-Dependency>*</Embed-Dependency>
<Embed-Transitive>true</Embed-Transitive>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.sling</groupId>
<artifactId>sling-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.twilio.sdk</groupId>
<artifactId>twilio</artifactId>
<version>10.1.0</version>
</dependency>
</dependencies>
core/ pom.xml
<dependency>
<groupId>com.twilio.sdk</groupId>
<artifactId>twilio</artifactId>
<version>10.1.0</version>
</dependency>
ui.apps/ pom.xml
<dependency>
<groupId>com.adobe.aem.guides</groupId>
<artifactId>wetraining.common-core</artifactId>
<version>${project.version}</version>
</dependency>
all/ pom.xml
<dependency>
<groupId>com.adobe.aem.guides</groupId>
<artifactId>wetraining.common-core</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<embedded>
<groupId>com.adobe.aem.guides</groupId>
<artifactId>wetraining.common-core</artifactId>
<type>jar</type>
<target>/apps/wknd-vendor-packages/application/install</target>
</embedded>
I have added all these pom.xml files but the same issue occurred. Could you please help?

