English 中文(简体)
m2eclipse plug-in, as a local website holder
原标题:m2eclipse plug-in as a local site repository

is it possible to download the m2eclipse plug-in so that I can install it from eclipse as a local site? if so, can you point me to the link, I could not find it on the m2eclipse site here:

m2e eclipse 下载链接

================================================================================================================================================================================================================================================================

Tried @Torsten 评论

我创建了一个批号,备有:

@echo off
set ECLIPSE=D:/DevProgs/dumps/Eclipse3.5
echo Mirroring metadata for %1
java -jar %ECLIPSE%/plugins/org.eclipse.equinox.launcher_1.0.200.v20090520.jar 
 -application org.eclipse.equinox.p2.metadata.repository.mirrorApplication 
 -source %1 
 -destination p2-mirror 
 -destinationName "D:	emp" 
 -verbose 
 -compare

并且称号是批号,但只是一开始ec,一概不发生。 你们能够告诉我,在这样做之后,怎么做?

D:DevAreas	est>DownloadEclipseRepo.bat "http://download.eclipse.org/technology/m2e/releases/"
Mirroring metadata for "http://download.eclipse.org/technology/m2e/releases/"

并且批量卷宗没有其他东西。

当我停止批量时,它就这样说:

D:DevAreas	est>DownloadEclipseRepo.bat "http://download.eclipse.org/technology/m2e/releases/"
Mirroring metadata for "http://download.eclipse.org/technology/m2e/releases/"
Terminate batch job (Y/N)?
^C -application  is not recognized as an internal or external command,
operable program or batch file.
 -source  is not recognized as an internal or external command,
operable program or batch file.
 -destination  is not recognized as an internal or external command,
operable program or batch file.
 -destinationName  is not recognized as an internal or external command,
operable program or batch file.
 -verbose  is not recognized as an internal or external command,
operable program or batch file.
 -compare  is not recognized as an internal or external command,
operable program or batch file.
D:DevAreas	est>

请提供更多清晰度/选择?

问题回答

可悲的是,更多的Eclipse项目已不再作为Zibps或可下载地点分发。 这确实伤害了建筑在离线设施之外的人们。

现代时代......

我认为M2Eclipse的情况也是如此。 作为一种解决办法,您可以使用2. 灭mir器的文字,从像以下一类的2个存放处检索该场址的当地副本,该存放处正在使用一个当地的Eclipse 3.5 安装。 你们也许希望把这一点与你手头的东西相适应。

Hope this helps,

Torsten

#!/bin/sh
ECLIPSE=C:/eclipse3.5

echo Mirroring metadata for $1
java -jar ${ECLIPSE}/plugins/org.eclipse.equinox.launcher_1.0.201.R35x_v20090715.jar 
 -application org.eclipse.equinox.p2.metadata.repository.mirrorApplication 
 -source ${1} 
 -destination p2-mirror 
 -destinationName "Corporate P2 Repo" 
 -verbose 
 -compare

echo Mirroring artifacts for $1
java -jar ${ECLIPSE}/plugins/org.eclipse.equinox.launcher_1.0.201.R35x_v20090715.jar 
 -application org.eclipse.equinox.p2.artifact.repository.mirrorApplication 
 -source ${1} 
 -destination p2-mirror 
 -destinationName "Corporate P2 Repo" 
 -verbose 
 -compare




相关问题
In Eclipse, why doesn t "Show In" appear for non-Java files?

If I have a *java file open, I can right click on the source, scroll down to "Show In (Alt-Shift-W)", and select Navigator. If I have an *xml, *jsp, or pretty much anything besides a Java source ...

Eclipse: Hover broken in debug perspective

Since upgrading Eclipse (Galileo build 20090920-1017), hover in debug no longer displays a variable s value. Instead, hover behaves as if I were in normal Java perspective: alt text http://...

Eclipse smart quotes - like in Textmate

Happy Friday — Does anyone know if eclipse has the notion of smart quotes like Textmate. The way it works is to select some words and quote them by simply hitting the " key? I m a newbie here so be ...

Indentation guide for the eclipse editor

Is there a setting or plugin for eclipse that can show indentation guides in the editor? Something like the Codekana plugin for visual studio (not so fancy is also OK). Important that it works with ...

Adding jar from Eclipse plugin runtime tab

I want to add .jar files for plugin from the Runtime tab of manifest file. When I use the Add... button, I can see only sub-directories of the plugin project. So if I want to add same .jar file to ...

How to copy multiple projects into single folder in eclipse

I have two projects, Project1 and Project2. Now i want to copy this projects into eclipse workspace but i want these projects to be in a single folder like below. Eclipse Workspace -> Project -> ...

Java: Finding out what is using all the memory

I have a java application that runs out of memory, but I have no idea which code is allocating the memory. Is there an application with which I can check this? I use Eclipse.

热门标签