Hi all,

In my project I create two artifacts. One of them includes (nearly)
all dependencies (nodeps), the other not.

   configurations {
      nodeps
   }

   dependencies {
       compile 'a', 'b', 'c', 'd'
   }

But I couldn't figure out how to remove 'a' and 'b' from the generated
POM of my "nodeps" build.

I tried

  uploadNodeps {
    repositories.mavenDeployer {
        configuration = configurations.nodeps
        [...]
    }
  }

but it still includes all dependencies.

Then I tried to make the nodeps dependencies explicit:

   dependencies {
      compile 'a', 'b', 'c', 'd'
      nodeps 'c', 'd'
   }

But it does not help either.

To cut the long story short: How do I remove 'a' and 'b' from the
compile / runtime dependencies of 'nodeps'?

Any clue?
        

Thanks in advance and best regards,
Lars
-- 
Semagia 
<http://www.semagia.com>

<http://www.topicmaps.de/mailinglist/> German Topic Maps mailing list
<http://tinytim.sourceforge.net/> Open Source Topic Maps engine
<http://mappa.semagia.com/> Mappa - Python Topic Maps engine


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

    http://xircles.codehaus.org/manage_email


Reply via email to