how to use ACS commons classes in my maven project?
TLDR: My problem is that when I'm inside my IDE (in this case it's IntelliJ), the IDE cannot find "com.adobe.acs"
Any ideas on how to fix? Thanks
---------------------------
1. So I already have these 2 entries in my pom file
<embedded>
<artifactId>acs-aem-commons-all</artifactId>
<target>/apps/my-app-vendor-packages/container/install</target>
<filter>true</filter>
<isAllVersionsFilter>true</isAllVersionsFilter>
</embedded><dependency>
<groupId>com.adobe.acs</groupId>
<artifactId>acs-aem-commons-all</artifactId>
<classifier>cloud</classifier>
<version>6.14.0</version>
<type>zip</type>
</dependency>
<dependency>
<groupId>com.adobe.acs</groupId>
<artifactId>acs-aem-commons-bundle</artifactId>
<version>6.14.0</version>
<scope>provided</scope>
</dependency>It auto-installed the ACS commons package in my package manager.
2. I can also see this JAR file in my home directory.
/home/myuser/.m2/repository/com/adobe/acs/acs-aem-commons-bundle-cloud/6.14.0/acs-aem-commons-bundle-cloud-6.14.0.jar
3. I have sync and reloaded maven in my IDE.