src/main/java/org/apache/easyant/core/services/DefaultPluginService.java [163:172]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                        if ("ant".equals(artifact.getType())) {
                            antFile = artifact.getLocalFile();
                        } else if (shouldBeAddedToClasspath(artifact)) {
                            path.createPathElement().setLocation(artifact.getLocalFile());
                        } else {
                            handleOtherResourceFile(moduleRevisionId, artifact.getName(), artifact.getExt(),
                                    artifact.getLocalFile());
                        }
                    }
                    if (antFile != null && antFile.exists()) {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/easyant/tasks/AbstractImport.java [78:88]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            if ("ant".equals(artifact.getType())) {
                antFile = artifact.getLocalFile();
            } else if (shouldBeAddedToClasspath(artifact)) {
                path.createPathElement().setLocation(artifact.getLocalFile());
            } else {
                handleOtherResourceFile(moduleRevisionId, artifact.getName(), artifact.getExt(),
                        artifact.getLocalFile());
            }
        }
        // effective import should be executed AFTER any other resource files has been handled
        if (antFile != null && antFile.exists()) {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



