Hi Rhett,

Thanks for the quick response. I'm still having trouble and not sure I
know what you mean by buildr automatically starting up? Here's what I
have:

task("setvars") do
      Java.java.lang.System.setProperty("SPG_CONFIG_DIR", SPG_CONFIG_DIR)
    end

    task("jetty"=>["setvars", jetty.use]) do |task|
      jetty.deploy("http://localhost:8080/mycontext";, war)
    end

Thanks again,

-Shane



On Wed, Sep 9, 2009 at 12:25 PM, Rhett Sutphin<[email protected]> wrote:
> Hi Shane,
>
> On Sep 9, 2009, at 11:19 AM, Shane Witbeck wrote:
>
>> I'm attempting to set a system variable so that it's available to the
>> web app I'm deploying to jetty. How is this done?
>
> I do it this way:
>
> Java.java.lang.System.setProperty("logback.configurationFile", logconfig)
>
> I'm using jetty.deploy in the mode where buildr automatically starts up
> jetty when deploy is called (i.e., not with jetty already running in a
> separate process).  If you're not, I think you'll have to do the setProperty
> call in the process where jetty starts up instead of where you deploy to it.
>
> Rhett
>

Reply via email to