Questions tagged «maven»


1
使用Squid作为Maven存储库
有人知道如何使用Squid代理Maven存储库吗? 有哪些配置文件? 主要问题在于,maven客户端发出的HTTP请求带有控制缓存行为的标头(我想绕过该标头)。 这是一个典型的请求: GET /maven/proxy/jboss-public/org/richfaces/richfaces-bom/4.2.0.Final/richfaces-bom-4.2.0.Final.pom HTTP/1.1 Cache-control: no-cache Cache-store: no-store Pragma: no-cache Expires: 0 Accept-Encoding: gzip User-Agent: Apache-Maven/3.0.4 (Java 1.6.0_26; Linux 2.6.32-38-generic) Host: 192.168.2.171 Connection: Keep-Alive 我已经disk_cache proxy_http为此使用了Apache HTTPD(和启用的模块),但是我正在创建一个镜像,而不是一个代理。 这是配置(基于该站点): <Proxy *> Order deny,allow Allow from all </Proxy> # central ProxyPass /maven/proxy/central http://repo1.maven.org/maven2 ProxyPassReverse /maven/proxy/central http://repo1.maven.org/maven2 CacheEnable disk /maven/proxy/central …

3
如何在Chef中下载Maven工件?
我想在厨师食谱中做这样的事情: maven_artifact "/opt/foo/my.jar" do source "com.foo:my:0.1:jar" end 但我找不到提供此功能的食谱。我写的东西基本上可以做到这一点,但是它不能处理快照,这需要解析maven-metadata.xml。在深入研究之前,我想确保自己没有遗漏任何明显的东西,因为这似乎是一个基本用例。
9 chef  maven 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.