Hello all,

I am trying to manage a project with a different name for the
corresponding Jar.

I have defined the following

project(':prjA') {
        archive_jar.customName = 'hello.jar' //  changes the name of the 
generated jar
        dependencies {
                compile "slf4j-api:slf4j-api:1.5.6"
        }
}


then in other projects I have used to something like the following

project(':prjB') {
        dependencies {
                if( isProjectPresent( "prjA" ) == true )
                        compile project(':prjA')
                else
                        compile "hello:hello:jar"

                compile "slf4j-api:slf4j-api:1.5.6"
        }
}

The problem is that the resolver of prjB is looking for prjA.jar. How
I can force the build-resolver to use a different name for prjA?

Thanks for any help

Regards,

Walter

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email


Reply via email to