-
Notifications
You must be signed in to change notification settings - Fork 2
Description
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.