Are you talking compiling Java sources using a different encoding? If so, javac accepts an `-encoding` parameter, so you can pass this parameter explicitly in your buildfile, e.g.,
compile.using :other => ['-encoding', 'iso8859-1'] alex On Sun, Mar 11, 2012 at 10:09 AM, Chris Holden <[email protected]> wrote: > Sorry Alex let me see if I can explain further. > > We have some code that needs to show Portuguese so I need to compile it > in en_US.ISO-8859-1. > > I have tried > > export LANG=en_US.ISO-8859-1 on the jenkins job and the build user. > > LANG=en_US.ISO-8859-1 buildr -e integration upload > > and ENV['LANG'] = 'en_US.ISO-8859-1' > > SO far buildr will not compile the job with the proper language encoding > that I need it to.'p > > On Sun, Mar 11, 2012 at 1:01 AM, Alex Boisvert <[email protected] > >wrote: > > > On Sat, Mar 10, 2012 at 10:00 AM, Chris Holden <[email protected]> > > wrote: > > > > > It's probably easy and I am just missing it. But I need to export a > > > specific language set for the build, how do I do this? > > > > > > > Sorry, I don't understand what you mean by "export a specific language > set > > for the build". > > > > alex > > > > > > -- > Take Care > -Chris Holden > > "As for me and my house, we will serve the Lord" Joshua 24:15 >
