Re: [javaCompiler-users] Request for AWT information
Status: Beta
Brought to you by:
soapy
From: Marco T. <mt...@gm...> - 2006-12-22 13:57:59
|
Lee D. Painter wrote: >> I assume that the properties have spaces, right? > > No, the properties I'm adding are: > > -Dcom.averick.ssl.allowUntrustedCertificates=true > -Dcom.maverick.ssl.allowInvalidCertificates=true > > It looks to me like these are being included on the compilation step for > the jar and only need to be included on the final main build step. You are right. I assumed that all flags are for jar compilation and the main compilation. But of course there exist flags that are only for the main compilation (but none that are only for jar compilation). I added it to my todo-list for version 1.1 since this is not a mayor problem. You can work around that by: 1. Compile your application without the flags. The compiled jars will be cached and reused in further compilations. 2. Add the flags and compile again. This is only bad if the jars change between every native compilation step. But that is very unlikely (I assume). Is that ok for you? Else I can put it higher in my priority list :-) Marco |