gpt4 book ai didi

java - Maven + Eclipse : how to disable fetch of all versions

转载 作者:太空宇宙 更新时间:2023-11-04 12:04:29 26 4
gpt4 key购买 nike

我有一组用 eclipse 制作的插件,我使用 Maven 将它们全部编译在一起。最终的构建工作正常,但是,在执行 $mvn install$ 时我遇到了一个恼人的问题:maven 下载所有最新版本的 eclipse、xtext、xtend 插件

下面是一个非常短的日志

[INFO] Adding repository http://download.eclipse.org/releases/mars [INFO] Fetching p2.index from http://download.eclipse.org/technology/epp/packages/mars/ (0B at 0B/s) 
[INFO] Fetching p2.index from http://download.eclipse.org/releases/mars/201506241002/ (0B at 0B/s)
[INFO] Fetching p2.index from http://download.eclipse.org/releases/mars/201510021000/ (0B at 0B/s)
[INFO] Fetching p2.index from http://download.eclipse.org/releases/mars/201602261000/ (0B at 0B/s)

基本上,这使得构建非常慢......

感兴趣的master pom部分是这样设置的

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<tycho-version>0.23.0</tycho-version>
<eclipse-repository>http://download.eclipse.org/releases/mars</eclipse-repository>
<xtext-repository>http://download.eclipse.org/modeling/tmf/xtext/updates/composite/releases</xtext-repository>
<orcc-repository>http://www.turnus.co/addons/orcc/</orcc-repository>
</properties>

<repositories>
<repository>
<id>mars</id>
<layout>p2</layout>
<url>${eclipse-repository}</url>
</repository>
<repository>
<id>orcc</id>
<layout>p2</layout>
<url>${orcc-repository}</url>
</repository>
<repository>
<id>xtext</id>
<layout>p2</layout>
<url>${xtext-repository}</url>
</repository>
</repositories>

<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-maven-plugin</artifactId>
<version>${tycho-version}</version>
<extensions>true</extensions>
<configuration>
<pomDependencies>consider</pomDependencies>
</configuration>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>target-platform-configuration</artifactId>
<version>${tycho-version}</version>
<configuration>
<environments>
<environment>
<os>win32</os>
<ws>win32</ws>
<arch>x86</arch>
</environment>
<environment>
<os>linux</os>
<ws>gtk</ws>
<arch>x86_64</arch>
</environment>
<environment>
<os>macosx</os>
<ws>cocoa</ws>
<arch>x86_64</arch>
</environment>
</environments>
</configuration>
</plugin>

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>add-source</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>${basedir}/src-gen</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
<!-- clean output directories -->
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>2.5</version>
<executions>
<execution>
<id>auto-clean</id>
<phase>clean</phase>
<goals>
<goal>clean</goal>
</goals>
<configuration>
<filesets>
<fileset>
<directory>${basedir}/src-gen</directory>
<includes>
<include>**</include>
</includes>
</fileset>
<fileset>
<directory>${project.build.directory}</directory>
<includes>
<include>**</include>
</includes>
</fileset>
</filesets>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

你知道我如何修改它并加快该过程吗?

谢谢!

S.

最佳答案

作为快速提示:

Maven 支持 -o--offline 选项,在这种情况下,它仅使用本地缓存的 Artifact 。您可以使用它来更快地进行本地构建。您的集成构建可以(并且应该)仍然使用实际的在线 p2 存储库。

如果您还想更普遍地解决加载时间问题,我看到两个选项:

  1. http://download.eclipse.org/technology/epp/packages/mars/ 存储库是一个复合存储库。这意味着它只包含一堆指向其他 p2 存储库的指针。这就是它联系并下载所有其他 http://download.eclipse.org/releases/mars/${timestamp}/ 存储库的原因。如果您知道只需要最新的 Mars 版本,则可以尝试直接添加 http://download.eclipse.org/releases/mars/201602261000/ 而不是复合存储库。

  2. 您可以构建自己的 p2 存储库,其中包含您所需要的内容,并将其存储在本地服务器上以供 Maven 使用。 b3 聚合器 ( https://www.eclipse.org/b3/ ) 是聚合和构建一致的自定义 p2 更新站点的好工具。

关于java - Maven + Eclipse : how to disable fetch of all versions,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40544575/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com