Community
Participate
Working Groups
Build Identifier: After exporting to Antenna buildfile I have mtj-build.xml which is works wrong. It doesn't copy src files so there's no files to compile. Looks like problem in custom-tasks\BuildFilesFilter task. I've found sources of this task and changed creating dirs in createContainerDirectory method. file.getParentFile().mkdir(); --> file.getParentFile().mkdirs(); This fix solves problem. Reproducible: Always Steps to Reproduce: 1. create helloworld and move midlet to 3 levels package. export to ant script 2. ant -f mtj-build.xml 3. see no files in 'classes' path.