# HG changeset patch # User Jaroslav Tulach # Date 1418061120 -3600 # Node ID 9023e492b2b91bea4afa2f47d4f933a45d772394 # Parent 58fd5ea7ad4ef0521320e8842b7cf3ca98f6e797 Add Bck2BrwsrDebug attribute to -debug file diff -r 58fd5ea7ad4e -r 9023e492b2b9 rt/mojo/src/main/java/org/apidesign/bck2brwsr/mojo/AOTLibrary.java --- a/rt/mojo/src/main/java/org/apidesign/bck2brwsr/mojo/AOTLibrary.java Mon Dec 08 18:36:00 2014 +0100 +++ b/rt/mojo/src/main/java/org/apidesign/bck2brwsr/mojo/AOTLibrary.java Mon Dec 08 18:52:00 2014 +0100 @@ -118,7 +118,7 @@ attr.putValue("Bck2BrwsrArtifactId", a.getArtifactId()); attr.putValue("Bck2BrwsrGroupId", a.getGroupId()); attr.putValue("Bck2BrwsrVersion", a.getVersion()); - attr.putValue("Bck2BrwsrMinified", "true"); + attr.putValue("Bck2BrwsrDebug", "true"); m.getEntries().put(artifactName(a, true), attr); } { @@ -126,7 +126,7 @@ attr.putValue("Bck2BrwsrArtifactId", a.getArtifactId()); attr.putValue("Bck2BrwsrGroupId", a.getGroupId()); attr.putValue("Bck2BrwsrVersion", a.getVersion()); - attr.putValue("Bck2BrwsrDebug", "true"); + attr.putValue("Bck2BrwsrMinified", "true"); m.getEntries().put(artifactName(a, false), attr); } }