Menu

Maven project configuration for module is not available

Build failed | computer programming guide
Maven build failed.

Maven resources compiler: Maven project configuration required for module '<project name>' isn't available. Compilation of Maven projects is supported only if external build is started from an IDE.

Solution

Right click on the POM.xml file of your project and click on the option "Add as Maven Project".

This will import your project as the Maven project and starts downloading the dependencies. 




Cloud Manager timeout

While using the cloud manager to build and deploy the code on Adobe Experience Manager (AEM), the default waiting time at a step is 7 days. If we left the pipeline waiting at any step for more than 7 days then the pipeline automatically gets failed.


Cloud Manager Pipeline
Cloud Manager Pipeline. Image Source Adobe Experience League


Reference 

datatables_table_0 - requested unknown parameter

While working with DataTable we may encounter some issues, and because of that on the load of DataTable we are seeing an alert that says "datatables warning: table id=datatables_table_0 - requested unknown parameter '<columnName>' for row 0, column 3". For me, this alert was showing because all the JSON objects which we were providing to create the table don't have consistent properties. In few objects column3 was present but in few column3 property is not present. To identify the issue with the column you may verify the column number mentioned in the alert and the same column number that we mentioned in the aoColumns(as showing in the below code snippet).

aoColumns: [
{ mData: 'column1' },
{ mData: 'column2' },
{ mData: 'column3' }]

After adding the column3 property in all objects data table start working perfectly.

Hope this helps you to investigate the data table issue.