[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.technology.iam] Re: eclipse 3.5 iam 0.10.0 No providers found matching selection: default

By reading http://jira.codehaus.org/browse/MGROOVY-170, it looks like an incompatibility between the groovy plugin and the plexus-container-default bundled with the maven embedder in IAM.

As the work on the new maven embedder stabilizes (as part of maven 3.0), we might get a fix for this by bundling a new embedder.

Brian Brooks wrote:
The problem seems to be some interaction with the <build> element contained in the parent pom.xml. I deleted this <build> element and the problem went away.

    <build>
      <plugins>
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-release-plugin</artifactId>
          <configuration>
              <tagBase>http://blanked-for-public-post</tagBase>
          </configuration>
       </plugin>
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-jar-plugin</artifactId>
           <version>2.2-APCS</version>
         </plugin>
         <plugin>
         <groupId>org.codehaus.mojo.groovy</groupId>
         <artifactId>groovy-maven-plugin</artifactId>
         <executions>
         <execution>
             <goals>
                 <goal>generateStubs</goal>
                 <goal>compile</goal>
                 <goal>generateTestStubs</goal>
                 <goal>testCompile</goal>
             </goals>
         </execution>
         </executions>
       </plugin>
      </plugins>
    </build>
    Brian