"Richard S. Hall" <[EMAIL PROTECTED]> writes:

> The groupId is "org.apache.felix" and the artifactId is
> "maven-bundle-plugin", so it is in the correct directory.

It turns out I needed to add this clause to my top-level POM:

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.felix</groupId>
        <artifactId>maven-bundle-plugin</artifactId>
        <version>${felix.version}</version>
      </plugin>
      <!-- ... -->
    </plugins>
  </build>


That is, if I didn't tell Maven which version of the plugin to use, it
looked for it first in the central plugin repository (looking for a
released version), and for some reason it wouldn't continue its search
to the snapshot repository.

-- 
Steven E. Harris

Reply via email to