GithubHelp home page GithubHelp logo

Comments (6)

crotwell avatar crotwell commented on August 24, 2024

Issue is that you have "bundleJRE = true" but do not set jreHome, so in this case macAppBundle tries to find where java in installed by running /usr/libexec/java_home. Actually there was another bug in the printlin that was trying to say this, so the error message was confusing.

I will attempt to move that code out of the configure section, and only run it right before task execution, so that as long as you do not actually run a task that needs jreHome, it should be ok.

This is a little weird in that the createApp task, or at least the bundleJRE task, really needs to know where to get the JRE from in order to bundle it, and on a non-Mac system, you probably have to set jreHome manually as this is an important part of the task's configuration. But to actually do the bundle each of your developers would need to download the mac java. Perhaps instructions for your developers to download the oracle mac jre into the development directory and then you set jreHome to something in the build directory would help? Still seems awkward and I am not sure of the best way around this.

from gradle-macappbundle.

msgilligan avatar msgilligan commented on August 24, 2024

Thanks for the response. Is there an easy way to disable the tasks on platforms other than Mac? Builds of the Mac version will be done on the Mac (at least for now).

from gradle-macappbundle.

msgilligan avatar msgilligan commented on August 24, 2024

Here's a workaround that solves my problem in the short run:

// For now, only bundle the JRE if building under Mac OS X
bundleJRE = System.getProperty("os.name").toLowerCase().contains("mac os")

from gradle-macappbundle.

crotwell avatar crotwell commented on August 24, 2024

I think I have fixed this with commit 8cd2fba, changes in github. Will try to push out a new version shortly.

I think your work-around should be ok as long as you are not too international. I think there are potential problems in the locale is non-english but not sure. Other option is to use:
import org.apache.tools.ant.taskdefs.condition.Os
and then
bundleJRE = Os.isFamily(Os.FAMILY_MAC)

from gradle-macappbundle.

msgilligan avatar msgilligan commented on August 24, 2024

This technique was suggested by someone from Gradle, Inc. on their support forum, so I'm assuming the string is not localized.

from gradle-macappbundle.

crotwell avatar crotwell commented on August 24, 2024

Should be fixed in 2.1.2, please let me know if you still have troubles.

from gradle-macappbundle.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.