Jar name not lowercased

From: Anjo Krank (a..rnet.de)
Date: Wed Oct 02 2002 - 04:28:45 EDT

  • Next message: Anders Peterson: "Re: Jar name not lowercased"

    Hi,

    is there a good reason why the names of the jar for an app-build is
    lowercased? I'd really like to remove that because currently the build
    breaks when the name given to the task is not lowercase too...

    In AppFormat.java:

              protected String buildAppPath() {
                  String name = getApplicatonTask().toLowerCase().getName() +
    ".jar";
    change to
                  String name = getApplicatonTask().getName() + ".jar";



    This archive was generated by hypermail 2.0.0 : Wed Oct 02 2002 - 04:28:57 EDT