Cloud Foundry maven プラグインを使用して Pivotal Web Services にデプロイしようとしています。ネットワーク プロキシを使用せずに非常に簡単に展開できますが、ネットワーク プロキシの背後にある場合、プラグインの設定方法がわからず、オンラインで検索しても適切な答えを見つけることができませんでした。助けてくれてありがとう!
<plugin>
<groupId>org.cloudfoundry</groupId>
<artifactId>cf-maven-plugin</artifactId>
<version>1.1.2</version>
<configuration>
<target>https://api.run.pivotal.io</target>
<server>cloud-foundry-credentials</server>
<org>MindWaveService</org>
<space>development</space>
<appname>MindwaveServiceApp</appname>
<url>http://appurl-service.cfapps.io/</url>
<memory>512</memory>
<instances>1</instances>
</configuration>
</plugin>
<proxy>
<id>optional</id>
<active>true</active>
<protocol>*</protocol>
<username>myUsername</username>
<password>myPass</password>
<host>myHostUrl</host>
<port>8080</port>
<nonProxyHosts>153.2.128.54|153.2.204.21|com.ups.*|10.244.223.27</nonProxyHosts>
</proxy>