feel like a fool m2e/lifecycle-mapping is never meant to be at central http://stackoverflow.com/questions/7409823/m2e-lifecycle-mapping-not-found
On Fri, May 16, 2014 at 2:59 PM, Dan Tran <[email protected]> wrote: > umm, what worries me why it disappears from maven central which suppose to > be a well guarded place? > > a JIRA case is filed at https://issues.sonatype.org/browse/CENTRALSRV-74 > > -D > > > On Fri, May 16, 2014 at 1:29 PM, Curtis Rueden <[email protected]> wrote: > >> 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 >> > > >> > >> > >
