“Compilation of Java actions failed” - Mendix Studio Pro 9.24.3 - installed CSV package

0
Hey guys,   I have an error when I try to run my Application: “Compilation of Java actions failed”. I am using Mendix Studio Pro 9.24.3 and I installed the following CSV package: https://marketplace.mendix.com/link/component/108605   After this installation of the CSV package, I am getting that java error. Can you please help me with this? These are the details:   C:\Users\abcd\Mendix\Prepare OPC-Q-main\javasource\csv_2\impl\CSV.java:9: error: duplicate class: csv.impl.CSV public class CSV { ^ C:\Users\abcd\Mendix\Prepare OPC-Q-main\javasource\csv_2\actions\ExportOQLToCSV.java:35: error: package oql.implementation does not exist import oql.implementation.OQL; ^ C:\Users\abcd\Mendix\Prepare OPC-Q-main\javasource\csv_2\actions\ExportOQLToCSV.java:143: error: cannot find symbol OQL.resetParameters(); ^ symbol: variable OQL location: class ExportOQLToCSV C:\Users\abcd\Mendix\Prepare OPC-Q-main\javasource\csv_2\actions\ExportOQLToCSV.java:168: error: cannot find symbol for (Entry<String, Object> entry : OQL.getNextParameters().entrySet()) { ^ symbol: variable OQL location: class ExportOQLToCSV C:\Users\abcd\Mendix\Prepare OPC-Q-main\javasource\csv_2\actions\ImportCSVUsingSQL.java:224: error: cannot find symbol DecimalFormat df = CSV.getDecimalFormat(decimalSeparator, groupingSeparator); ^ symbol: method getDecimalFormat(String,String) location: class CSV Note: Some input files use or override a deprecated API. Note: Recompile with -Xlint:deprecation for details. Note: Some input files use unchecked or unsafe operations. Note: Recompile with -Xlint:unchecked for details. 5 errors FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':compile'. > Compilation failed; see the compiler error output for details. * Try: > Run with --stacktrace option to get the stack trace. > Run with --debug option to get more log output. > Run with --scan to get full insights. * Get more help at https://help.gradle.org BUILD FAILED in 6s  
asked
1 answers
1

CSV needs the OQL module to be installed. You can see this in the dependencies section of the CSV documentation.

You can find the OQL module here.

https://marketplace.mendix.com/link/component/66876

I hope this helps.

 

answered