Maven Based Build and Deploy
Set up proxy details for Maven to pull dependencies from the internet.
Note:
Make sure to execute these commands inside thesoadeploy
pod.
If your environment is not running behind a proxy, then skip this step. Otherwise,
replace REPLACE-WITH-PROXY-HOST
,
REPLACE-WITH-PROXY-PORT
and the value for
nonProxyHosts
attribute per your environment and create the
settings.xml
:
mkdir $HOME/.m2
cat <<EOF > $HOME/.m2/settings.xml
<settings>
<proxies>
<proxy>
<active>true</active>
<protocol>http</protocol>
<host>REPLACE-WITH-PROXY-HOST</host>
<port>REPLACE-WITH-PROXY-PORT</port>
<nonProxyHosts>soainfra-cluster-soa-cluster|soainfra-adminserver</nonProxyHosts>
</proxy>
</proxies>
</settings>
EOF
- For Oracle SOA Suite composite applications
- For Oracle Service Bus composite applications