You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When i am trying to build from Master i get the below compilation error :
#########################
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.6.1:compile (default-compile) on project aem-epic: Compilation failure
[ERROR] /C:/AEM/ACS/aem-epic/aem-epic-tool/src/main/java/com/adobe/acs/epic/util/ReportUtil.java:[84,28] cannot access org.openxmlformats.schemas.spreadsheetml.x2006.main.CTColor
[ERROR] class file for org.openxmlformats.schemas.spreadsheetml.x2006.main.CTColor not found
########################
This is due to incorrect/missing dependency in parent POM.
When i am trying to build from Master i get the below compilation error :
#########################
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.6.1:compile (default-compile) on project aem-epic: Compilation failure
[ERROR] /C:/AEM/ACS/aem-epic/aem-epic-tool/src/main/java/com/adobe/acs/epic/util/ReportUtil.java:[84,28] cannot access org.openxmlformats.schemas.spreadsheetml.x2006.main.CTColor
[ERROR] class file for org.openxmlformats.schemas.spreadsheetml.x2006.main.CTColor not found
########################
This is due to incorrect/missing dependency in parent POM.
Add this one and Build finishes successfully :
<dependency> <groupId>org.apache.poi</groupId> <artifactId>ooxml-schemas</artifactId> <version>1.3</version> </dependency>
Let me know if i missed anything here.
The text was updated successfully, but these errors were encountered: