作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 maven (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/
我是一名优秀的程序员,十分优秀!