[INFO] The PluginDescriptor for the plugin Plugin
[org.apache.maven.release:maven-release-manager] was not found.

  <build>
      <plugins>
          <plugin>
              <groupId>org.apache.maven.release</groupId>
              <artifactId>maven-release-manager</artifactId>
              <version>1.0-alpha-5-TSG</version>
              <inherited>true</inherited>
          </plugin>
          <plugin>
              <groupId>org.apache.maven.release</groupId>
              <artifactId>maven-release-plugin</artifactId>
              <version>2.0-beta-8-TSG</version>
              <inherited>true</inherited>
          </plugin>
      </plugins>
  </build>

The maven-release-manager is not a plugin and as such has no plugin
descriptor. It's merely a dependency (with packaging "jar") of the
maven-release-plugin. You shouldn't have to specify this directly in the
POMs for your test projects, it should be picked up automatically by Maven
when resolving the dependencies for maven-release-plugin:2.0-beta-8-TSG,
which you updated as you stated.

Also note that you specified a wrong groupId for maven-release-plugin, it's actually org.apache.maven.plugins.


Benjamin


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

Reply via email to