On 10/31/07, Graham Leggett <[EMAIL PROTECTED]> wrote:
> By way of background, things will make a lot more sense when you know
> exactly what the eclipse plugin does, and the pde plugin does, and the gap
> in between the two that complicates everything.

That was EXTREMELY helpful, thank you :) With that part done, there's
just one more issue I might need help on and that's dependencies
between plugins. Adding them to the MANIFEST.MF makes Eclipse compile
projects but obviously Maven (or PDE) isn't able to read from those.

How do I make one plugin depend on another then? The following setup
doesn't work:

<project xmlns="http://maven.apache.org/POM/4.0.0";
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd";>
  <parent>
    <artifactId>client-plugin-container</artifactId>
    <groupId>nl.test.client</groupId>
    <version>1.0-SNAPSHOT</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <groupId>nl.test.client</groupId>
  <artifactId>nl.test.overview</artifactId>
  <packaging>zip</packaging>
  <name>Collaboratory Overview Plugin</name>
  <version>1.0-SNAPSHOT</version>
  <dependencies>
    <dependency>
      <groupId>nl.collaboratory.client</groupId>
      <artifactId>nl.collaboratory.commonelements</artifactId>
      <version>1.0-SNAPSHOT</version>
      <scope>compile</scope>
    </dependency>
  </dependencies>
</project>

With the super-POM I pasted before.


-- 
 Michael Paluchowski [sonic|redmagic]
   [EMAIL PROTECTED]
_________________________________ www.nethut.pl _ www.buggybrain.com _

 I do not fear computers. I fear the lack of them. / Isaac Asimov

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to