Dependency conflicts with Azure openai integration with AEM
Hello all,
I am trying to integrate the Azure openai with AEM. Following the below documentation
I am using the below dependency and added the
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-ai-openai</artifactId>
<version>1.0.0-beta.3</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-core</artifactId>
<version>1.42.0</version>
</dependency>To resolve the above dependency exported the package as below
<plugin>
<groupId>biz.aQute.bnd</groupId>
<artifactId>bnd-maven-plugin</artifactId>
<executions>
<execution>
<id>bnd-process</id>
<goals>
<goal>bnd-process</goal>
</goals>
<configuration>
<bnd><![CDATA[
Import-Package: javax.annotation;version=0.0.0,*
Export-Package: com.azure.ai.openai.*,com.azure.core.*
]]></bnd>
</configuration>
</execution>
</executions>
</plugin>
But I keep getting new dependency issues, any pointer would be helpful
