Repository: flex-falcon Updated Branches: refs/heads/feature-autobuild/example-maven-dirs f9423008d -> 36d7ff900
- Added debug output to track down the build problems Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/36d7ff90 Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/36d7ff90 Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/36d7ff90 Branch: refs/heads/feature-autobuild/example-maven-dirs Commit: 36d7ff900d8bac4100718b890a3227bd4ebe5ec8 Parents: f942300 Author: Christofer Dutz <[email protected]> Authored: Fri Oct 28 09:57:34 2016 +0200 Committer: Christofer Dutz <[email protected]> Committed: Fri Oct 28 09:57:34 2016 +0200 ---------------------------------------------------------------------- .../compiler/internal/codegen/js/goog/JSGoogPublisher.java | 6 ++++++ 1 file changed, 6 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/36d7ff90/compiler-jx/src/main/java/org/apache/flex/compiler/internal/codegen/js/goog/JSGoogPublisher.java ---------------------------------------------------------------------- diff --git a/compiler-jx/src/main/java/org/apache/flex/compiler/internal/codegen/js/goog/JSGoogPublisher.java b/compiler-jx/src/main/java/org/apache/flex/compiler/internal/codegen/js/goog/JSGoogPublisher.java index 4791887..99ef6af 100644 --- a/compiler-jx/src/main/java/org/apache/flex/compiler/internal/codegen/js/goog/JSGoogPublisher.java +++ b/compiler-jx/src/main/java/org/apache/flex/compiler/internal/codegen/js/goog/JSGoogPublisher.java @@ -274,6 +274,12 @@ public class JSGoogPublisher extends JSPublisher implements IJSPublisher protected void dumpJar(File jarFile, File outputDir) throws IOException { try { + System.out.println("----------------------------------------------------------------"); + System.out.println("Absolute path: " + jarFile.getAbsolutePath()); + System.out.println("Canonical path: " + jarFile.getCanonicalPath()); + System.out.println("Path length: " + jarFile.getCanonicalPath().length()); + System.out.println("File exists: " + jarFile.exists()); + System.out.println("----------------------------------------------------------------"); // TODO (mschmalle) for some reason ide thinks this has not been closed @SuppressWarnings("resource") JarFile jar = new JarFile(jarFile);
