qickrooms / flex-mojos

Automatically exported from code.google.com/p/flex-mojos
0 stars 0 forks source link

Look up license.properties in Linux #132

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
In linux, flex  mojos doesn't pick up the license property file properly

As in AbstractFlexCompilerMojo.java defines

        new File("~/.adobe/Flex/license.properties" )

the "~" doesn't refer to user home directory, instead it refers to 
${currentDirectory}/~/.adobe/Flex/license.properties

I think the correct syntax would be:

        new File(System.getProperty("user.home") + 
"/.adobe/Flex/license.properties");

Wondering why flex mojos doesn't pickup the license property in my 
continuous integration server

Hope it helps

Original issue reported on code.google.com by trung....@gmail.com on 12 Nov 2008 at 7:34

GoogleCodeExporter commented 9 years ago
Fixed at revision 906

Original comment by velo...@gmail.com on 23 Nov 2008 at 10:46