Hi Dan,

> I am looking for org.eclipse.m2e:lifecycle-mapping:1.0.0
>
> and it is not at maven central any more.

My team definitely felt the pain of its absence from Central as well.

To avoid the problem, we use this workaround:

    <profile>
      <id>only-eclipse</id>
      <activation>
        <property>
          <name>m2e.version</name>
        </property>
      </activation>
      <build>
        <pluginManagement>
          <plugins>
            <!-- This plugin's configuration is used to store Eclipse m2e
settings
                 only. It has no influence on the Maven build itself. -->
            <plugin>
              <groupId>org.eclipse.m2e</groupId>
              <artifactId>lifecycle-mapping</artifactId>
              <version>1.0.0</version>
              <configuration>
                ...
              </configuration>
            </plugin>
          </plugins>
        </pluginManagement>
      </build>
    </profile>

Beautiful, right? ;-)

-Curtis


On Fri, May 16, 2014 at 2:48 PM, Dan Tran <[email protected]> wrote:

> any one?
>
> http://central.maven.org/maven2/org/eclipse/m2e
>
> Thanks
>
> -D
>
>
> On Thu, May 15, 2014 at 4:34 PM, Dan Tran <[email protected]> wrote:
>
> > I am looking for org.eclipse.m2e:lifecycle-mapping:1.0.0
> >
> > and it is not at maven central any more.
> >
> > do you see the same thing?
> >
> >
> > Thanks
> >
> > -D
> >
>

Reply via email to