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 the soadeploy 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
  1. For Oracle SOA Suite composite applications
    1. Set up the environment for Maven:
      #Perform Maven Sync
      cd /u01/oracle/oracle_common/plugins/maven/com/oracle/maven/oracle-maven-sync/14.1.2/
      mvn install:install-file \
          -DpomFile=oracle-maven-sync-14.1.2.pom \
          -Dfile=oracle-maven-sync-14.1.2.jar
      
      #install Maven plugin
      mvn help:describe \
          -Dplugin=com.oracle.maven:oracle-maven-sync \
          -Ddetail
      
      #push libraries into internal repository
      mvn com.oracle.maven:oracle-maven-sync:push \
          -DoracleHome=/u01/oracle \
          -DtestingOnly=false
      
      mvn archetype:crawl \
          -Dcatalog=$HOME/.m2/archetype-catalog.xml \
          -DarchetypeArtifactId=oracle-soa-application \
          -DarchetypeVersion=14.1.2.0-0
      
    2. Build the SOA Archive (SAR) for your sample deployment available at /composites/mavenproject/my-soa-app:
      cd /composites/mavenproject/my-soa-app
      mvn package
      

      The SAR will be generated at /composites/mavenproject/my-soa-app/my-project/target/sca_my-project.jar.

    3. Deploy into the Oracle SOA Suite instance. For example, if the instance URL is http://soainfra-cluster-soa-cluster:7003 with credentials username: weblogic and password: REPLACE-WITH-WEBLOGIC-PASSWORD, enter the following commands:
      cd /composites/mavenproject/my-soa-app
      mvn pre-integration-test \
          -DoracleServerUrl=http://soainfra-cluster-soa-cluster:7003 \
          -DsarLocation=/composites/mavenproject/my-soa-app/my-project/target/sca_my-project.jar \
          -Doverwrite=true \
          -DforceDefault=true \
          -Dcomposite.partition=default \
          -Duser=weblogic  -Dpassword=Welcome1
      
  2. For Oracle Service Bus composite applications
    1. Set up the environment for Maven:
      #Perform Maven Sync
      cd /u01/oracle/oracle_common/plugins/maven/com/oracle/maven/oracle-maven-sync/14.1.2/
      mvn install:install-file \
          -DpomFile=oracle-maven-sync-14.1.2.pom \
          -Dfile=oracle-maven-sync-14.1.2.jar
      
      #push libraries into internal repository
      mvn com.oracle.maven:oracle-maven-sync:push \
          -DoracleHome=$ORACLE_HOME
      mvn archetype:crawl \
          -Dcatalog=$HOME/.m2/archetype-catalog.xml
      
      #Verify the mvn setup
      mvn help:describe \
          -DgroupId=com.oracle.servicebus.plugin \
          -DartifactId=oracle-servicebus-plugin \
          -Dversion=14.1.2.0-0
      
    2. Build the Oracle Service Bus Archive (sbconfig.sbar).

      Build sbconfig.sbar for your sample deployment, available at /composites/mavenproject/HelloWorldSB:

      cd /composites/mavenproject/HelloWorldSB
      mvn com.oracle.servicebus.plugin:oracle-servicebus-plugin:package
      

      The Oracle Service Bus Archive (SBAR) will be generated at /composites/mavenproject/HelloWorldSB/.data/maven/sbconfig.sbar.

    3. Deploy the generated sbconfig.sbar into the Oracle Service Bus instance. For example, if the Administration URL is http://soainfra-adminserver:7001 with credentials username: weblogic and password: Welcome1, enter the following commands:
      cd /composites/mavenproject/HelloWorldSB
      mvn pre-integration-test   \
          -DoracleServerUrl=t3://soainfra-adminserver:7001 \
          -DoracleUsername=weblogic -DoraclePassword=Welcome1