我需要安装一个Eclipse插件不连接到Internet的计算机,我无法找到一个DIST要使用本地安装。
是否有从更新站点下载一个插件,并创建一个本地安装存档(或本地更新站点)的工具吗? 传闻说,你可以用eclipse做到这一点,但我不能找到如何做到这一点的任何信息。
我需要安装一个Eclipse插件不连接到Internet的计算机,我无法找到一个DIST要使用本地安装。
是否有从更新站点下载一个插件,并创建一个本地安装存档(或本地更新站点)的工具吗? 传闻说,你可以用eclipse做到这一点,但我不能找到如何做到这一点的任何信息。
可以使用P2镜工具 (或伽利略文档中P2镜 ),以反映远程元数据和工件存储库。
下面是示例命令在本地镜像伽利略工件存储库:
eclipse\eclipsec.exe -nosplash -verbose
-application org.eclipse.equinox.p2.metadata.repository.mirrorApplication
-source http://download.eclipse.org/releases/galileo
-destination file:d:/temp/galileo/
eclipse\eclipsec.exe -nosplash -verbose
-application org.eclipse.equinox.p2.artifact.repository.mirrorApplication
-source http://download.eclipse.org/releases/galileo
-destination file:d:/temp/galileo/
(第一个命令的反射镜的元数据,第二反射镜的伪像。命令应该在窗口中的一个线)
在运行这些命令后,您可以使用file:d:/temp/galileo
作为本地镜像。
另外,您也可以使用P2镜像Ant任务 ,它可以让你指定安装单位(插件或功能),以反映。 注:指定功能时,不要忘记使用.feature.group
后缀)
现在,也有对P2网站使用第谷插件,Maven的镜像支持: http://wiki.eclipse.org/Tycho/Additional_Tools
其中一个好处是,你可以非常精确地指定要反映,有什么可安装联合针对OS / WS /拱,...
举例来说,以反映Eclipse的靛蓝您可以使用下面pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>mirroring</groupId>
<artifactId>indigo-mirror</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<properties>
<tycho.version>0.16.0</tycho.version>
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.5</version>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-repository-plugin</artifactId>
<version>${tycho.version}</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.eclipse.tycho.extras</groupId>
<artifactId>tycho-p2-extras-plugin</artifactId>
<version>${tycho.version}</version>
<executions>
<execution>
<phase>prepare-package</phase>
<goals>
<goal>mirror</goal>
</goals>
</execution>
</executions>
<configuration>
<source>
<!-- source repositories to mirror from -->
<repository>
<url>http://ftp.sh.cvut.cz/MIRRORS/eclipse/releases/indigo/</url>
<layout>p2</layout>
<!-- supported layouts are "p2-metadata", "p2-artifacts", and "p2" (for joint repositories; default) -->
</repository>
</source>
<!-- The destination directory to mirror to. -->
<destination>${project.build.directory}/repository</destination>
<!-- Whether only strict dependencies should be followed. -->
<!-- "strict" means perfect version match -->
<followStrictOnly>false</followStrictOnly>
<!-- Whether or not to follow optional requirements. -->
<includeOptional>true</includeOptional>
<!-- Whether or not to follow non-greedy requirements. -->
<includeNonGreedy>true</includeNonGreedy>
<!-- include the latest version of each IU -->
<latestVersionOnly>false</latestVersionOnly>
<!-- don't mirror artifacts, only metadata -->
<mirrorMetadataOnly>false</mirrorMetadataOnly>
<!-- whether to compress the content.xml/artifacts.xml -->
<compress>true</compress>
<!-- whether to append to the target repository content -->
<append>true</append>
<!-- whether to mirror pack200 artifacts also. Available since tycho-extras 0.17.0 -->
<verbose>true</verbose>
<includePacked>true</includePacked>
</configuration>
</plugin>
</plugins>
</build>
</project>
您可能会发现建立一个定制Eclipse包有帮助的,尽管它可能更多的重量级,你所需要的。