JUnit_Report.xml not created with jenkins

I am trying to use Jenkins to run Katalon test suites. The test will run, but it does not create any JUnit_Report.xml files. The only files in the report folder are execution.properties, execution.uuid, execution0.log. How do I get the JUnit_Report.xml file to be created.

The execution0.log looks like a j4log (logger.dtd) file. Is there a way in Jenins to publish that so its readable?

From the Katalon log with the command line params:

06:21:50 INFO: Katalon Version: 6.2.2
06:21:50 INFO: Command-line arguments: -runMode=console -browserType=Chrome -retry=0 -statusDelay=20 -projectPath=C:\Jenkins\workspace\IDWEB-katalon\TestSuiteWithParams\IDWEB-smoke.prj -testSuitePath=Test Suites/VendorPurchase -reportFolder=C:\Jenkins\workspace\IDWEB-katalon\TestSuiteWithParams\Reports -executionProfile=www1-trunk1
06:21:50 INFO: User working dir: C:\WINDOWS\TEMP\katalon-4644407275583711469
06:21:50 INFO: User home: C:\WINDOWS\system32\config\systemprofile
06:21:50 INFO: Java vendor: Oracle Corporation
06:21:50 INFO: Java version: 1.8.0_181
06:21:50 INFO: Local OS: Windows 10 64bit
06:21:50 INFO: CPU load: 97%
06:21:50 INFO: Total memory: 6143 MB
06:21:50 INFO: Free memory: 4490 MB

1- install this plugin : https://store.katalon.com/product/59/Basic-Report
2- then open katalon and click on “Reload plugins” (you will find it at top right corner)
3- open your project
4- go to Project/Settings/Plugin/Report (you will find in Menu top screen)
5- click on plugins then report and check all report formats
(i do not recommend checking PDF as it has bug )
image

click apply and save
6- that’s all you can run now your tests and you will see all your reports in report folder where you found execution.properties, execution.uuid, execution0.log…

Source