gpt4 book ai didi

java - Maven 站点插件在代理后面运行不佳

转载 作者:行者123 更新时间:2023-11-30 08:10:22 25 4
gpt4 key购买 nike

我正在使用 ma​​ven (apache-maven-3.2.1) 和 maven-site-plugin进入我的项目。

在代理后面执行 mvn site 时,我收到以下警告/运行缓慢:

[INFO] Rendering site with org.apache.maven.skins:maven-default-skin:jar:1.0 skin.
[INFO] Generating "Dependencies" report --- maven-project-info-reports-plugin:2.8:dependencies
[WARNING] The repository url 'http://download.oracle.com/maven' is invalid - Repository 'oracle.releases' will be blacklisted.
[WARNING] The repository url 'http://snapshots.repository.codehaus.org' is invalid - Repository 'codehaus-snapshots' will be black
listed.
[WARNING] The repository url 'http://repository.codehaus.org' is invalid - Repository 'codehaus' will be blacklisted.
[WARNING] The repository url 'http://download.java.net/maven/glassfish' is invalid - Repository 'glassfish-repository' will be bla
cklisted.
[WARNING] The repository url 'http://download.java.net/maven/2/' is invalid - Repository 'maven2-repository.dev.java.net' will be
blacklisted.

我构建成功,但我认为将有效存储库列入黑名单是一个问题...

在代理后面所以我在我的maven全局设置中定义了一个代理($M2_HOME/conf/settings.xml)。

对于某些插件,如 release-plugin(请参阅下面的示例)或 surefire-plugin 我必须使用代理设置覆盖参数才能成功构建,但我不喜欢找不到 maven-site-plugin 的 arguments(等效配置)。

代理背后的 maven-release 示例

        <plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.2</version>
<configuration>
<arguments>${proxyString}</arguments>
</configuration>
</plugin>
(...)
<profile>
<id>proxy</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<properties>
<proxyString>-Djava.net.useSystemProxies=true
-Dhttp.proxyHost=myProxy -Dhttp.proxyPort=3128
-Dhttps.proxyHost=myProxy -Dhttps.proxyPort=3128</proxyString>
</properties>
</profile>

我认为 maven 站点使用 maven-project-info-reports-plugin 但我不知道如何将代理参数传递给这个插件(这是 - 根据 the doc 配置的内部由 maven-site) ?

我看到一个 old discussion on apache maven mailing list但这对我没有帮助。

如何为mvn site设置代理?

最佳答案

日志列出了已弃用、移动或不存在的存储库,因此此警告是预期的。

因为这一步可能真的很慢,(通过这个src)有一种方法可以避免生成依赖位置:

<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<configuration>
<dependencyLocationsEnabled>false</dependencyLocationsEnabled>
</configuration>
</plugin>
</plugins>
</pluginManagement>

关于java - Maven 站点插件在代理后面运行不佳,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31748832/

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