Error in org.apache.maven.dotnet.toolchain.DotnetToolchain

View: New views
2 Messages — Rating Filter:   Alert me  

Error in org.apache.maven.dotnet.toolchain.DotnetToolchain

by Dan Rugg :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I'm under the impression that NMaven is to be JSE 1.5 compatible.  If
so, you will need to change
"org.apache.maven.dotnet.toolchain.DotnetToolchain", line 64.  The
method 'isEmpty()' is a JSE 1.6 api enhancement.  You can just replace
with "toolName.trim().length == 0".

 

 


Re: Error in org.apache.maven.dotnet.toolchain.DotnetToolchain

by Shane Isbell :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Thanks. good catch. I'll get that changed.

Shane

On Wed, May 21, 2008 at 3:21 PM, Dan Rugg <Dan2@...> wrote:

> I'm under the impression that NMaven is to be JSE 1.5 compatible.  If
> so, you will need to change
> "org.apache.maven.dotnet.toolchain.DotnetToolchain", line 64.  The
> method 'isEmpty()' is a JSE 1.6 api enhancement.  You can just replace
> with "toolName.trim().length == 0".
>
>
>
>
>
>