Reinhard Poetz wrote:
If I understood some discussion on [EMAIL PROTECTED] correctly, we would also have to put NOTICE and LICENSE into the main directory of each "sub-tree", that in our case relates to each of our modules that are released separately.
Yes.


We should do this "clean-up work" in one go as soon as there is a Maven 2 plugin available, that picks up those files and puts them into META-INF.

No need to wait for a plugin, we can just add this to our parent pom:
   <build>
    ..
    <resources>
      <resource>
        <directory>src/main/resources</directory>
      </resource>
      <resource>
      <directory>.</directory>
      <targetPath>META-INF</targetPath>
      <includes>
        <include>LICENSE*</include>
        <include>NOTICE*</include>
      </includes>
    </resource>
  </resources>
  </build>

Carsten
--
Carsten Ziegeler
[EMAIL PROTECTED]

Reply via email to