Aditya Chilakamarty

Greenhorn
+ Follow
since Jul 25, 2016
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Aditya Chilakamarty

<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<!--
          This POM was automatically generated during SOA project creation.          
          This POM relates to this SOA Composite, i.e. the one in this same directory.
          There is another POM in the SOA Application directory which handles
          the whole SOA Application, which may contain additional projects.
       -->
<modelVersion>4.0.0</modelVersion>
<groupId>vsii_mw_soa</groupId>
<artifactId>GENERIC_MAIL_SENDER</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>sar</packaging>
<!--
          The parent points to the common SOA parent POM.  That is a special POM that is
          shipped by Oracle as a point of customization (only). You can add default values
          for properties like serverUrl, etc. to the SOA common parent POM, so that you
          do not have to specify them over and over in every project POM.
   -->
<parent>
<groupId>com.oracle.soa</groupId>
<artifactId>sar-common</artifactId>
<version>12.2.1-0-0</version>
</parent>
<properties>
<!-- These parameters are used by the compile goal -->
<scac.input.dir>
     ${project.basedir}/SOA/
   </scac.input.dir>
<scac.output.dir>
     ${project.basedir}/target
   </scac.output.dir>
<scac.input>
     ${scac.input.dir}/composite.xml
   </scac.input>
<scac.output>
     ${scac.output.dir}/out.xml
   </scac.output>
<scac.error>
     ${scac.output.dir}/error.txt
   </scac.error>
<scac.displayLevel>
     1
   </scac.displayLevel>
<!-- if you are using a config plan, uncomment the following line and update to point
            to your config plan -->
<!--<configplan>${scac.input.dir}/configplan.xml</configplan>-->
<!-- These parameters are used by the deploy and undeploy goals -->
<composite.name>
     ${project.artifactId}
   </composite.name>
<composite.revision>
     1.0
   </composite.revision>
<composite.partition>
     default
   </composite.partition>
<serverUrl>
     ${oracleServerUrl}
   </serverUrl>
<user>
     ${oracleUsername}
   </user>
<password>
     ${oraclePassword}
   </password>
<overwrite>
     true
   </overwrite>
<forceDefault>
     true
   </forceDefault>
<regenerateRulebase>
     false
   </regenerateRulebase>
<keepInstancesOnRedeploy>
     false
   </keepInstancesOnRedeploy>
<!-- These parameters are used by the test goal
        if you are using the sca-test (test) goal, you need to uncomment the following
            line and point it to your jndi.properties file. -->
<!--<jndi.properties.input>UNDEFINED</jndi.properties.input>-->
<scatest.result>
     ${scac.output.dir}/testResult
   </scatest.result>
<!--  input is the name of the composite to run test suties against -->
<input>
     ${project.artifactId}
   </input>
<!--<scac.ant.buildfile>${env.MW_HOME}/soa/bin/ant-sca-compile.xml</scac.ant.buildfile>
       <sca.ant.testfile>${env.MW_HOME}/soa/bin/ant-sca-test.xml</sca.ant.testfile>
       -->
</properties>
<build>
<plugins>
<plugin>
<groupId>com.oracle.soa.plugin</groupId>
<artifactId>oracle-soa-plugin</artifactId>
<version>12.2.1-0-0</version>
<configuration>
<compositeName>
           ${project.artifactId}
         </compositeName>
<composite>
           ${scac.input}
         </composite>
<sarLocation>
           ${scac.output.dir}/sca_${project.artifactId}_rev${version}.jar
         </sarLocation>
<serverUrl>
           ${serverUrl}
         </serverUrl>
<user>
           ${user}
         </user>
<password>
           ${password}
         </password>
<!-- Note: compositeRevision is needed to package, revision is needed to undeploy -->
<compositeRevision>
           ${composite.revision}
         </compositeRevision>
<revision>
           ${composite.revision}
         </revision>
<scacInputDir>
           ${scac.input.dir}
         </scacInputDir>
<input>
           ${input}
         </input>
</configuration>
<!-- extensions=true is needed to use the custom sar packaging type -->
<extensions>true</extensions>
</plugin>
</plugins>
</build>
</project>
7 years ago
bash-3.2$ mvn -X clean package
Apache Maven 3.3.9 (bb52d8502b132ec0a5a3f4c09453c07478323dc5; 2015-11-10T11:41:47-05:00)
Maven home: /apps/opt/scmfs/Devops/apache-maven-3.3.9
Java version: 1.8.0_65, vendor: Oracle Corporation
Java home: /apps/opt/scmfs/Devops/jdk1.8.0_65/jre
Default locale: en_US, platform encoding: UTF-8
OS name: "linux", version: "2.6.18-238.9.1.0.1.el5xen", arch: "amd64", family: "unix"
[DEBUG] Created new class realm maven.api
[DEBUG] Importing foreign packages into class realm maven.api
[DEBUG]   Imported: javax.enterprise.inject.* < plexus.core
[DEBUG]   Imported: javax.enterprise.util.* < plexus.core
[DEBUG]   Imported: javax.inject.* < plexus.core
[DEBUG]   Imported: org.apache.maven.* < plexus.core
[DEBUG]   Imported: org.apache.maven.artifact < plexus.core
[DEBUG]   Imported: org.apache.maven.classrealm < plexus.core
[DEBUG]   Imported: org.apache.maven.cli < plexus.core
[DEBUG]   Imported: org.apache.maven.configuration < plexus.core
[DEBUG]   Imported: org.apache.maven.exception < plexus.core
[DEBUG]   Imported: org.apache.maven.execution < plexus.core
[DEBUG]   Imported: org.apache.maven.execution.scope < plexus.core
[DEBUG]   Imported: org.apache.maven.lifecycle < plexus.core
[DEBUG]   Imported: org.apache.maven.model < plexus.core
[DEBUG]   Imported: org.apache.maven.monitor < plexus.core
[DEBUG]   Imported: org.apache.maven.plugin < plexus.core
[DEBUG]   Imported: org.apache.maven.profiles < plexus.core
[DEBUG]   Imported: org.apache.maven.project < plexus.core
[DEBUG]   Imported: org.apache.maven.reporting < plexus.core
[DEBUG]   Imported: org.apache.maven.repository < plexus.core
[DEBUG]   Imported: org.apache.maven.rtinfo < plexus.core
[DEBUG]   Imported: org.apache.maven.settings < plexus.core
[DEBUG]   Imported: org.apache.maven.toolchain < plexus.core
[DEBUG]   Imported: org.apache.maven.usability < plexus.core
[DEBUG]   Imported: org.apache.maven.wagon.* < plexus.core
[DEBUG]   Imported: org.apache.maven.wagon.authentication < plexus.core
[DEBUG]   Imported: org.apache.maven.wagon.authorization < plexus.core
[DEBUG]   Imported: org.apache.maven.wagon.events < plexus.core
[DEBUG]   Imported: org.apache.maven.wagon.observers < plexus.core
[DEBUG]   Imported: org.apache.maven.wagon.proxy < plexus.core
[DEBUG]   Imported: org.apache.maven.wagon.repository < plexus.core
[DEBUG]   Imported: org.apache.maven.wagon.resource < plexus.core
[DEBUG]   Imported: org.codehaus.classworlds < plexus.core
[DEBUG]   Imported: org.codehaus.plexus.* < plexus.core
[DEBUG]   Imported: org.codehaus.plexus.classworlds < plexus.core
[DEBUG]   Imported: org.codehaus.plexus.component < plexus.core
[DEBUG]   Imported: org.codehaus.plexus.configuration < plexus.core
[DEBUG]   Imported: org.codehaus.plexus.container < plexus.core
[DEBUG]   Imported: org.codehaus.plexus.context < plexus.core
[DEBUG]   Imported: org.codehaus.plexus.lifecycle < plexus.core
[DEBUG]   Imported: org.codehaus.plexus.logging < plexus.core
[DEBUG]   Imported: org.codehaus.plexus.personality < plexus.core
[DEBUG]   Imported: org.codehaus.plexus.util.xml.Xpp3Dom < plexus.core
[DEBUG]   Imported: org.codehaus.plexus.util.xml.pull.XmlPullParser < plexus.core
[DEBUG]   Imported: org.codehaus.plexus.util.xml.pull.XmlPullParserException < plexus.core
[DEBUG]   Imported: org.codehaus.plexus.util.xml.pull.XmlSerializer < plexus.core
[DEBUG]   Imported: org.eclipse.aether.* < plexus.core
[DEBUG]   Imported: org.eclipse.aether.artifact < plexus.core
[DEBUG]   Imported: org.eclipse.aether.collection < plexus.core
[DEBUG]   Imported: org.eclipse.aether.deployment < plexus.core
[DEBUG]   Imported: org.eclipse.aether.graph < plexus.core
[DEBUG]   Imported: org.eclipse.aether.impl < plexus.core
[DEBUG]   Imported: org.eclipse.aether.installation < plexus.core
[DEBUG]   Imported: org.eclipse.aether.internal.impl < plexus.core
[DEBUG]   Imported: org.eclipse.aether.metadata < plexus.core
[DEBUG]   Imported: org.eclipse.aether.repository < plexus.core
[DEBUG]   Imported: org.eclipse.aether.resolution < plexus.core
[DEBUG]   Imported: org.eclipse.aether.spi < plexus.core
[DEBUG]   Imported: org.eclipse.aether.transfer < plexus.core
[DEBUG]   Imported: org.eclipse.aether.version < plexus.core
[DEBUG]   Imported: org.slf4j.* < plexus.core
[DEBUG]   Imported: org.slf4j.helpers.* < plexus.core
[DEBUG]   Imported: org.slf4j.spi.* < plexus.core
[DEBUG] Populating class realm maven.api
[INFO] Error stacktraces are turned on.
[DEBUG] Reading global settings from /apps/opt/scmfs/Devops/apache-maven-3.3.9/conf/settings.xml
[DEBUG] Reading user settings from /home/vzpdvops/.m2/settings.xml
[DEBUG] Reading global toolchains from /apps/opt/scmfs/Devops/apache-maven-3.3.9/conf/toolchains.xml
[DEBUG] Reading user toolchains from /home/vzpdvops/.m2/toolchains.xml
[DEBUG] Using local repository at /apps/opt/soa/.m2/repository
[DEBUG] Using manager EnhancedLocalRepositoryManager with priority 10.0 for /apps/opt/soa/.m2/repository
[INFO] Scanning for projects...
[DEBUG] Failure to find com.oracle.weblogic:wls_sharedLibraries.wlclient/maven-metadata.xml in https://repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced
[DEBUG] Failure to find com.oracle.weblogic:com.bea.core.binxml_1.8.0.0/maven-metadata.xml in https://repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced
[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=2, ConflictMarker.markTime=1, ConflictMarker.nodeCount=182, ConflictIdSorter.graphTime=2, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=101, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=41, ConflictResolver.conflictItemCount=168, DefaultDependencyCollector.collectTime=1425, DefaultDependencyCollector.transformTime=49}
[DEBUG] com.oracle.soa.plugin:oracle-soa-plugin:jar:12.2.1-0-0:
[DEBUG]    com.oracle.weblogic:wls_sharedLibraries.wljmxclient:jar:12.2.1-0-0:compile
[DEBUG]       com.oracle.weblogic:wls_sharedLibraries.wlclient:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.weblogic:wls_sharedLibraries.wls-api:jar:12.2.1-0-0:compile
[DEBUG]    org.codehaus.plexus:plexus-archiver:jar:2.4.1:compile
[DEBUG]       org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile
[DEBUG]          junit:junit:jar:3.8.1:compile
[DEBUG]          classworlds:classworlds:jar:1.1-alpha-2:compile
[DEBUG]       org.codehaus.plexus:plexus-io:jar:2.0.7:compile
[DEBUG]       org.apache.commons:commons-compress:jar:1.5:compile
[DEBUG]          org.tukaani:xz:jar:1.2:compile
[DEBUG]    org.apache.maven:maven-plugin-api:jar:2.0.6:compile
[DEBUG]    com.oracle.soa:soa-infra-mgmt:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.soa:fabric-runtime:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.fmwshare:share:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.soa:tracking-core:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.soa:tracking-fabric:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.soa:commons-cli-1.1:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.coherence:coherence:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.weblogic:com.bea.core.xml.xmlbeans:jar:12.2.1-0-0:compile
[DEBUG]    org.apache.maven:maven-artifact:jar:2.0.6:compile
[DEBUG]    org.apache.maven.plugins:maven-jar-plugin:jar:2.4:compile
[DEBUG]       org.apache.maven:maven-project:jar:2.0.6:compile
[DEBUG]          org.apache.maven:maven-profile:jar:2.0.6:compile
[DEBUG]          org.apache.maven:maven-artifact-manager:jar:2.0.6:compile
[DEBUG]          org.apache.maven:maven-plugin-registry:jar:2.0.6:compile
[DEBUG]       org.apache.maven:maven-model:jar:2.0.6:compile
[DEBUG]       org.apache.maven:maven-archiver:jar:2.5:compile
[DEBUG]       commons-lang:commons-lang:jar:2.1:compile
[DEBUG]    org.apache.maven.plugins:maven-resources-plugin:jar:2.6:compile
[DEBUG]       org.apache.maven:maven-core:jar:2.0.6:compile
[DEBUG]          org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.6:compile
[DEBUG]          org.apache.maven.reporting:maven-reporting-api:jar:2.0.6:compile
[DEBUG]             org.apache.maven.doxia:doxia-sink-api:jar:1.0-alpha-7:compile
[DEBUG]          org.apache.maven:maven-repository-metadata:jar:2.0.6:compile
[DEBUG]          org.apache.maven:maven-error-diagnostics:jar:2.0.6:compile
[DEBUG]          commons-cli:commons-cli:jar:1.0:compile
[DEBUG]          org.apache.maven:maven-plugin-descriptor:jar:2.0.6:compile
[DEBUG]          org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4:compile
[DEBUG]       org.apache.maven:maven-settings:jar:2.0.6:compile
[DEBUG]       org.apache.maven:maven-monitor:jar:2.0.6:compile
[DEBUG]       org.codehaus.plexus:plexus-interpolation:jar:1.13:compile
[DEBUG]    org.apache.maven.shared:maven-filtering:jar:1.1:compile
[DEBUG]       org.sonatype.plexus:plexus-build-api:jar:0.0.4:compile
[DEBUG]    jaxen:jaxen:jar:1.1.6:compile
[DEBUG]    org.codehaus.plexus:plexus-utils:jar:3.0.10:compile
[DEBUG]    commons-io:commons-io:jar:2.4:compile
[DEBUG]    com.oracle.soa:oracle.bpm.project.catalog:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.soa:oracle.bpm.project.compile:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.soa:oracle.bpm.project.io:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.soa:oracle.bpm.project:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.soa:oracle.bpm.common.model:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.soa:oracle.bpm.project.model:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.soa:oracle.bpm.bpm-services.interface:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.soa:oracle.bpm.web-resources:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.soa:orabpel:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.soa:orabpel-validator:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.soa:orabpel-common:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.soa:orabpel-thirdparty:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.soa:soa-infra-tools:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.soa:bpm-infra:jar:12.2.1-0-0:compile
[DEBUG]       com.oracle.weblogic:com.bea.core.binxml_1.8.0.0:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.soa:testfwk-xbeans:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.soa:bpm-services:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.soa:mediator_client:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.soa:rl:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.soa:rulesdk2:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.fmwshare:com.oracle.webservices.orawsdl-api:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.jrf.infra.common:jrf-api:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.weblogic:com.bea.core.apache.commons.lang:jar:2.6.0-0-2:compile
[DEBUG]    com.oracle.fmwshare:com.oracle.classloader.pcl:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.fmwshare:jrf_ws_client.com.oracle.webservices.fmw.client:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.weblogic:javax.management.j2ee:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.fmwshare:adfbcsvc-share:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.fmwshare:adfm:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.fmwshare:adf-share-base:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.fmwshare:adf-share-ca:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.fmwshare:adflogginghandler:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.fmwshare:adf-share-support:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.fmwshare:jsp-el-api:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.fmwshare:dms:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.javavm.jrf:ojdbc6dms:jar:12.1.0-2-1:compile
[DEBUG]    com.oracle.fmwshare:jmxframework:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.fmwshare:jmxspi:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.fmwshare:jps-internal:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.fmwshare:jps-unsupported-api:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.fmwshare:oracle.logging-utils:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.fmwshare:mdsrt:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.fmwshare:oramds:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.fmwshare:ojdl:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.toplink:eclipselink:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.wsm.common:wsm-policy-core:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.wsm.common:wsm-secpol:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.fmwshare:xml:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.fmwshare:xmlparserv2:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.fmwshare:xmlef:jar:12.2.1-0-0:compile
[DEBUG]    commons-beanutils:commons-beanutils:jar:1.7.0:compile
[DEBUG]       commons-logging:commons-logging:jar:1.0.3:compile
[DEBUG]    com.oracle.fmwshare:org.apache.commons.digester_1.8:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.fmwshare:org.springframework_3.1.0:jar:12.2.1-0-0:compile
[DEBUG]    com.oracle.pki:oraclepki:jar:12.2.1-0-0:compile
[DEBUG] Created new class realm extension>com.oracle.soa.plugin:oracle-soa-plugin:12.2.1-0-0
[DEBUG] Importing foreign packages into class realm extension>com.oracle.soa.plugin:oracle-soa-plugin:12.2.1-0-0
[DEBUG]   Imported:  < maven.api
[DEBUG] Populating class realm extension>com.oracle.soa.plugin:oracle-soa-plugin:12.2.1-0-0
[DEBUG]   Included: com.oracle.soa.plugin:oracle-soa-plugin:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.weblogic:wls_sharedLibraries.wljmxclient:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.weblogic:wls_sharedLibraries.wlclient:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.weblogic:wls_sharedLibraries.wls-api:jar:12.2.1-0-0
[DEBUG]   Included: org.codehaus.plexus:plexus-archiver:jar:2.4.1
[DEBUG]   Included: junit:junit:jar:3.8.1
[DEBUG]   Included: org.codehaus.plexus:plexus-io:jar:2.0.7
[DEBUG]   Included: org.apache.commons:commons-compress:jar:1.5
[DEBUG]   Included: org.tukaani:xz:jar:1.2
[DEBUG]   Included: com.oracle.soa:soa-infra-mgmt:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.soa:fabric-runtime:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.fmwshare:share:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.soa:tracking-core:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.soa:tracking-fabric:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.soa:commons-cli-1.1:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.coherence:coherence:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.weblogic:com.bea.core.xml.xmlbeans:jar:12.2.1-0-0
[DEBUG]   Included: org.apache.maven.plugins:maven-jar-plugin:jar:2.4
[DEBUG]   Included: org.apache.maven:maven-archiver:jar:2.5
[DEBUG]   Included: commons-lang:commons-lang:jar:2.1
[DEBUG]   Included: org.apache.maven.plugins:maven-resources-plugin:jar:2.6
[DEBUG]   Included: org.apache.maven.reporting:maven-reporting-api:jar:2.0.6
[DEBUG]   Included: org.apache.maven.doxia:doxia-sink-api:jar:1.0-alpha-7
[DEBUG]   Included: commons-cli:commons-cli:jar:1.0
[DEBUG]   Included: org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4
[DEBUG]   Included: org.codehaus.plexus:plexus-interpolation:jar:1.13
[DEBUG]   Included: org.apache.maven.shared:maven-filtering:jar:1.1
[DEBUG]   Included: org.sonatype.plexus:plexus-build-api:jar:0.0.4
[DEBUG]   Included: jaxen:jaxen:jar:1.1.6
[DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:3.0.10
[DEBUG]   Included: commons-io:commons-io:jar:2.4
[DEBUG]   Included: com.oracle.soa:oracle.bpm.project.catalog:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.soa:oracle.bpm.project.compile:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.soa:oracle.bpm.project.io:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.soa:oracle.bpm.project:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.soa:oracle.bpm.common.model:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.soa:oracle.bpm.project.model:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.soa:oracle.bpm.bpm-services.interface:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.soa:oracle.bpm.web-resources:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.soa:orabpel:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.soa:orabpel-validator:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.soa:orabpel-common:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.soa:orabpel-thirdparty:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.soa:soa-infra-tools:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.soa:bpm-infra:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.weblogic:com.bea.core.binxml_1.8.0.0:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.soa:testfwk-xbeans:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.soa:bpm-services:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.soa:mediator_client:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.soa:rl:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.soa:rulesdk2:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.fmwshare:com.oracle.webservices.orawsdl-api:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.jrf.infra.common:jrf-api:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.weblogic:com.bea.core.apache.commons.lang:jar:2.6.0-0-2
[DEBUG]   Included: com.oracle.fmwshare:com.oracle.classloader.pcl:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.fmwshare:jrf_ws_client.com.oracle.webservices.fmw.client:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.weblogic:javax.management.j2ee:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.fmwshare:adfbcsvc-share:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.fmwshare:adfm:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.fmwshare:adf-share-base:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.fmwshare:adf-share-ca:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.fmwshare:adflogginghandler:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.fmwshare:adf-share-support:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.fmwshare:jsp-el-api:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.fmwshare:dms:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.javavm.jrf:ojdbc6dms:jar:12.1.0-2-1
[DEBUG]   Included: com.oracle.fmwshare:jmxframework:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.fmwshare:jmxspi:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.fmwshare:jps-internal:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.fmwshare:jps-unsupported-api:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.fmwshare:oracle.logging-utils:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.fmwshare:mdsrt:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.fmwshare:oramds:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.fmwshare:ojdl:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.toplink:eclipselink:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.wsm.common:wsm-policy-core:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.wsm.common:wsm-secpol:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.fmwshare:xml:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.fmwshare:xmlparserv2:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.fmwshare:xmlef:jar:12.2.1-0-0
[DEBUG]   Included: commons-beanutils:commons-beanutils:jar:1.7.0
[DEBUG]   Included: commons-logging:commons-logging:jar:1.0.3
[DEBUG]   Included: com.oracle.fmwshare:org.apache.commons.digester_1.8:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.fmwshare:org.springframework_3.1.0:jar:12.2.1-0-0
[DEBUG]   Included: com.oracle.pki:oraclepki:jar:12.2.1-0-0
[DEBUG] Extension realms for project vsii_mw_soa:GENERIC_MAIL_SENDER:sar:1.0-SNAPSHOT: [ClassRealm[extension>com.oracle.soa.plugin:oracle-soa-plugin:12.2.1-0-0, parent: sun.misc.Launcher$AppClassLoader@70dea4e]]
[DEBUG] Created new class realm project>vsii_mw_soa:GENERIC_MAIL_SENDER:1.0-SNAPSHOT
[DEBUG] Populating class realm project>vsii_mw_soa:GENERIC_MAIL_SENDER:1.0-SNAPSHOT
[DEBUG] Looking up lifecyle mappings for packaging sar from ClassRealm[project>vsii_mw_soa:GENERIC_MAIL_SENDER:1.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
[DEBUG] Extension realms for project com.oracle.soa:sar-common:pom:12.2.1-0-0: (none)
[DEBUG] Looking up lifecyle mappings for packaging pom from ClassRealm[plexus.core, parent: null]
[DEBUG] Extension realms for project com.oracle.maven:oracle-common:pom:12.2.1-0-0: (none)
[DEBUG] Looking up lifecyle mappings for packaging pom from ClassRealm[plexus.core, parent: null]
[WARNING]
[WARNING] Some problems were encountered while building the effective model for vsii_mw_soa:GENERIC_MAIL_SENDER:sar:1.0-SNAPSHOT
[WARNING] The expression ${version} is deprecated. Please use ${project.version} instead.
[WARNING]
[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
[WARNING]
[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
[WARNING]
[DEBUG] === REACTOR BUILD PLAN ================================================
[DEBUG] Project: vsii_mw_soa:GENERIC_MAIL_SENDER:sar:1.0-SNAPSHOT
[DEBUG] Tasks:   [clean, package]
[DEBUG] Style:   Regular
[DEBUG] =======================================================================
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building GENERIC_MAIL_SENDER 1.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[DEBUG] Resolving plugin version for org.apache.maven.plugins:maven-resources-plugin
[DEBUG] Could not find metadata org.apache.maven.plugins:maven-resources-plugin/maven-metadata.xml in local (/apps/opt/soa/.m2/repository)
[DEBUG] Skipped remote request for org.apache.maven.plugins:maven-resources-plugin/maven-metadata.xml, locally cached metadata up-to-date.
[DEBUG] Resolved plugin version for org.apache.maven.plugins:maven-resources-plugin to 3.0.1 from repository central (https://repo.maven.apache.org/maven2, default, releases)
[DEBUG] Resolving plugin version for org.apache.maven.plugins:maven-surefire-plugin
[DEBUG] Could not find metadata org.apache.maven.plugins:maven-surefire-plugin/maven-metadata.xml in local (/apps/opt/soa/.m2/repository)
[DEBUG] Skipped remote request for org.apache.maven.plugins:maven-surefire-plugin/maven-metadata.xml, locally cached metadata up-to-date.
[DEBUG] Resolved plugin version for org.apache.maven.plugins:maven-surefire-plugin to 2.19.1 from repository central (https://repo.maven.apache.org/maven2, default, releases)
[DEBUG] Resolving plugin version for org.apache.maven.plugins:maven-install-plugin
[DEBUG] Could not find metadata org.apache.maven.plugins:maven-install-plugin/maven-metadata.xml in local (/apps/opt/soa/.m2/repository)
[DEBUG] Skipped remote request for org.apache.maven.plugins:maven-install-plugin/maven-metadata.xml, locally cached metadata up-to-date.
[DEBUG] Resolved plugin version for org.apache.maven.plugins:maven-install-plugin to 2.5.2 from repository central (https://repo.maven.apache.org/maven2, default, releases)
[DEBUG] Resolving plugin version for org.apache.maven.plugins:maven-compiler-plugin
[DEBUG] Could not find metadata org.apache.maven.plugins:maven-compiler-plugin/maven-metadata.xml in local (/apps/opt/soa/.m2/repository)
[DEBUG] Skipped remote request for org.apache.maven.plugins:maven-compiler-plugin/maven-metadata.xml, locally cached metadata up-to-date.
[DEBUG] Resolved plugin version for org.apache.maven.plugins:maven-compiler-plugin to 3.5.1 from repository central (https://repo.maven.apache.org/maven2, default, releases)
[DEBUG] Resolving plugin version for org.apache.maven.plugins:maven-deploy-plugin
[DEBUG] Could not find metadata org.apache.maven.plugins:maven-deploy-plugin/maven-metadata.xml in local (/apps/opt/soa/.m2/repository)
[DEBUG] Skipped remote request for org.apache.maven.plugins:maven-deploy-plugin/maven-metadata.xml, locally cached metadata up-to-date.
[DEBUG] Resolved plugin version for org.apache.maven.plugins:maven-deploy-plugin to 2.8.2 from repository central (https://repo.maven.apache.org/maven2, default, releases)
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] === PROJECT BUILD PLAN ================================================
[DEBUG] Project:       vsii_mw_soa:GENERIC_MAIL_SENDER:1.0-SNAPSHOT
[DEBUG] Dependencies (collect): []
[DEBUG] Dependencies (resolve): [compile+runtime, runtime+system, test]
[DEBUG] Repositories (dependencies): [central (https://repo.maven.apache.org/maven2, default, releases)]
[DEBUG] Repositories (plugins)     : [central (https://repo.maven.apache.org/maven2, default, releases)]
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean)
[DEBUG] Style:         Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
 <directory default-value="${project.build.directory}"/>
 <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
 <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
 <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
 <outputDirectory default-value="${project.build.outputDirectory}"/>
 <reportDirectory default-value="${project.reporting.outputDirectory}"/>
 <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
 <skip default-value="false">${clean.skip}</skip>
 <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
 <verbose>${clean.verbose}</verbose>
</configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:3.0.1:resources (default-resources)
[DEBUG] Style:         Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
 <addDefaultExcludes default-value="true"/>
 <buildFilters default-value="${project.build.filters}"/>
 <encoding default-value="${project.build.sourceEncoding}"/>
 <escapeString default-value="\"/>
 <escapeWindowsPaths default-value="true"/>
 <fileNameFiltering default-value="false"/>
 <includeEmptyDirs default-value="false"/>
 <outputDirectory default-value="${project.build.outputDirectory}"/>
 <overwrite default-value="false"/>
 <project default-value="${project}"/>
 <resources default-value="${project.resources}"/>
 <session default-value="${session}"/>
 <skip default-value="false">${maven.resources.skip}</skip>
 <supportMultiLineFiltering default-value="false"/>
 <useBuildFilters default-value="true"/>
 <useDefaultDelimiters default-value="true"/>
</configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal:          com.oracle.soa.plugin:oracle-soa-plugin:12.2.1-0-0:compile (default-compile)
[DEBUG] Style:         Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
 <appHome>${appHome}</appHome>
 <classesDirectory default-value="${project.build.outputDirectory}"/>
 <composite>/apps/opt/scmfs/Devops/sandbox/clone/Code/GENERIC_MAIL_SENDER/SOA/composite.xml</composite>
 <defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
 <failOnWarning default-value="false">${failOnWarning}</failOnWarning>
 <finalName default-value="${project.build.finalName}">${sarName}</finalName>
 <forceCreation default-value="false">${sar.forceCreation}</forceCreation>
 <ignoreErrors default-value="false">${ignoreErrors}</ignoreErrors>
 <level default-value="1">${level}</level>
 <noComponents default-value="false">${noComponents}</noComponents>
 <oracleHome>${oracleHome}</oracleHome>
 <outputDirectory default-value="${project.build.directory}"/>
 <pluginArtifacts default-value="${plugin.artifacts}"/>
 <project default-value="${project}"/>
 <reportErrors default-value="false">${reportErrors}</reportErrors>
 <scacInputDir default-value="${scac.input.dir}">/apps/opt/scmfs/Devops/sandbox/clone/Code/GENERIC_MAIL_SENDER/SOA</scacInputDir>
 <session default-value="${session}"/>
 <showProcessLog default-value="false">${showProcessLog}</showProcessLog>
 <skipIfEmpty default-value="false">${sar.skipIfEmpty}</skipIfEmpty>
 <soaOracleHome>${soaOracleHome}</soaOracleHome>
 <useDefaultManifestFile default-value="false">${sar.useDefaultManifestFile}</useDefaultManifestFile>
 <xml>${xml}</xml>
</configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:3.0.1:testResources (default-testResources)
[DEBUG] Style:         Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
 <addDefaultExcludes default-value="true"/>
 <buildFilters default-value="${project.build.filters}"/>
 <encoding default-value="${project.build.sourceEncoding}"/>
 <escapeString default-value="\"/>
 <escapeWindowsPaths default-value="true"/>
 <fileNameFiltering default-value="false"/>
 <includeEmptyDirs default-value="false"/>
 <outputDirectory default-value="${project.build.testOutputDirectory}"/>
 <overwrite default-value="false"/>
 <project default-value="${project}"/>
 <resources default-value="${project.testResources}"/>
 <session default-value="${session}"/>
 <skip default-value="false">${maven.test.skip}</skip>
 <supportMultiLineFiltering default-value="false"/>
 <useBuildFilters default-value="true"/>
 <useDefaultDelimiters default-value="true"/>
</configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal:          org.apache.maven.plugins:maven-compiler-plugin:3.5.1:testCompile (default-testCompile)
[DEBUG] Style:         Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
 <basedir default-value="${basedir}"/>
 <buildDirectory default-value="${project.build.directory}"/>
 <classpathElements default-value="${project.testClasspathElements}"/>
 <compileSourceRoots default-value="${project.testCompileSourceRoots}"/>
 <compilerId default-value="javac">${maven.compiler.compilerId}</compilerId>
 <compilerReuseStrategy default-value="${reuseCreated}">${maven.compiler.compilerReuseStrategy}</compilerReuseStrategy>
 <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>
 <debug default-value="true">${maven.compiler.debug}</debug>
 <debuglevel>${maven.compiler.debuglevel}</debuglevel>
 <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
 <executable>${maven.compiler.executable}</executable>
 <failOnError default-value="true">${maven.compiler.failOnError}</failOnError>
 <forceJavacCompilerUse default-value="false">${maven.compiler.forceJavacCompilerUse}</forceJavacCompilerUse>
 <fork default-value="false">${maven.compiler.fork}</fork>
 <generatedTestSourcesDirectory default-value="${project.build.directory}/generated-test-sources/test-annotations"/>
 <maxmem>${maven.compiler.maxmem}</maxmem>
 <meminitial>${maven.compiler.meminitial}</meminitial>
 <mojoExecution default-value="${mojoExecution}"/>
 <optimize default-value="false">${maven.compiler.optimize}</optimize>
 <outputDirectory default-value="${project.build.testOutputDirectory}"/>
 <project default-value="${project}"/>
 <session default-value="${session}"/>
 <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>
 <showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings>
 <skip>${maven.test.skip}</skip>
 <skipMultiThreadWarning default-value="false">${maven.compiler.skipMultiThreadWarning}</skipMultiThreadWarning>
 <source default-value="1.5">${maven.compiler.source}</source>
 <staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
 <target default-value="1.5">${maven.compiler.target}</target>
 <testSource>${maven.compiler.testSource}</testSource>
 <testTarget>${maven.compiler.testTarget}</testTarget>
 <useIncrementalCompilation default-value="true">${maven.compiler.useIncrementalCompilation}</useIncrementalCompilation>
 <verbose default-value="false">${maven.compiler.verbose}</verbose>
</configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal:          org.apache.maven.plugins:maven-surefire-plugin:2.19.1:test (default-test)
[DEBUG] Style:         Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
 <additionalClasspathElements>${maven.test.additionalClasspath}</additionalClasspathElements>
 <argLine>${argLine}</argLine>
 <basedir default-value="${basedir}"/>
 <childDelegation default-value="false">${childDelegation}</childDelegation>
 <classesDirectory default-value="${project.build.outputDirectory}"/>
 <classpathDependencyExcludes>${maven.test.dependency.excludes}</classpathDependencyExcludes>
 <debugForkedProcess>${maven.surefire.debug}</debugForkedProcess>
 <dependenciesToScan>${dependenciesToScan}</dependenciesToScan>
 <disableXmlReport default-value="false">${disableXmlReport}</disableXmlReport>
 <enableAssertions default-value="true">${enableAssertions}</enableAssertions>
 <excludedGroups>${excludedGroups}</excludedGroups>
 <excludesFile>${surefire.excludesFile}</excludesFile>
 <failIfNoSpecifiedTests>${surefire.failIfNoSpecifiedTests}</failIfNoSpecifiedTests>
 <failIfNoTests>${failIfNoTests}</failIfNoTests>
 <forkCount default-value="1">${forkCount}</forkCount>
 <forkMode default-value="once">${forkMode}</forkMode>
 <forkedProcessTimeoutInSeconds>${surefire.timeout}</forkedProcessTimeoutInSeconds>
 <groups>${groups}</groups>
 <includesFile>${surefire.includesFile}</includesFile>
 <junitArtifactName default-value="junit:junit">${junitArtifactName}</junitArtifactName>
 <jvm>${jvm}</jvm>
 <localRepository default-value="${localRepository}"/>
 <objectFactory>${objectFactory}</objectFactory>
 <parallel>${parallel}</parallel>
 <parallelMavenExecution default-value="${session.parallel}"/>
 <parallelOptimized default-value="true">${parallelOptimized}</parallelOptimized>
 <parallelTestsTimeoutForcedInSeconds>${surefire.parallel.forcedTimeout}</parallelTestsTimeoutForcedInSeconds>
 <parallelTestsTimeoutInSeconds>${surefire.parallel.timeout}</parallelTestsTimeoutInSeconds>
 <perCoreThreadCount default-value="true">${perCoreThreadCount}</perCoreThreadCount>
 <pluginArtifactMap>${plugin.artifactMap}</pluginArtifactMap>
 <pluginDescriptor default-value="${plugin}"/>
 <printSummary default-value="true">${surefire.printSummary}</printSummary>
 <projectArtifactMap>${project.artifactMap}</projectArtifactMap>
 <redirectTestOutputToFile default-value="false">${maven.test.redirectTestOutputToFile}</redirectTestOutputToFile>
 <remoteRepositories default-value="${project.pluginArtifactRepositories}"/>
 <reportFormat default-value="brief">${surefire.reportFormat}</reportFormat>
 <reportNameSuffix default-value="">${surefire.reportNameSuffix}</reportNameSuffix>
 <reportsDirectory default-value="${project.build.directory}/surefire-reports"/>
 <rerunFailingTestsCount default-value="0">${surefire.rerunFailingTestsCount}</rerunFailingTestsCount>
 <reuseForks default-value="true">${reuseForks}</reuseForks>
 <runOrder default-value="filesystem">${surefire.runOrder}</runOrder>
 <shutdown default-value="testset">${surefire.shutdown}</shutdown>
 <skip default-value="false">${maven.test.skip}</skip>
 <skipAfterFailureCount default-value="0">${surefire.skipAfterFailureCount}</skipAfterFailureCount>
 <skipExec>${maven.test.skip.exec}</skipExec>
 <skipTests default-value="false">${skipTests}</skipTests>
 <suiteXmlFiles>${surefire.suiteXmlFiles}</suiteXmlFiles>
 <test>${test}</test>
 <testClassesDirectory default-value="${project.build.testOutputDirectory}"/>
 <testFailureIgnore default-value="false">${maven.test.failure.ignore}</testFailureIgnore>
 <testNGArtifactName default-value="org.testng:testng">${testNGArtifactName}</testNGArtifactName>
 <testSourceDirectory default-value="${project.build.testSourceDirectory}"/>
 <threadCount>${threadCount}</threadCount>
 <threadCountClasses default-value="0">${threadCountClasses}</threadCountClasses>
 <threadCountMethods default-value="0">${threadCountMethods}</threadCountMethods>
 <threadCountSuites default-value="0">${threadCountSuites}</threadCountSuites>
 <trimStackTrace default-value="true">${trimStackTrace}</trimStackTrace>
 <useFile default-value="true">${surefire.useFile}</useFile>
 <useManifestOnlyJar default-value="true">${surefire.useManifestOnlyJar}</useManifestOnlyJar>
 <useSystemClassLoader default-value="true">${surefire.useSystemClassLoader}</useSystemClassLoader>
 <useUnlimitedThreads default-value="false">${useUnlimitedThreads}</useUnlimitedThreads>
 <workingDirectory>${basedir}</workingDirectory>
 <project default-value="${project}"/>
 <session default-value="${session}"/>
</configuration>
[DEBUG] -----------------------------------------------------------------------
[DEBUG] Goal:          com.oracle.soa.plugin:oracle-soa-plugin:12.2.1-0-0:sar (default-sar)
[DEBUG] Style:         Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
 <classesDirectory default-value="${project.build.outputDirectory}"/>
 <defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
 <finalName default-value="${project.build.finalName}">${sarName}</finalName>
 <forceCreation default-value="false">${sar.forceCreation}</forceCreation>
 <outputDirectory default-value="${project.build.directory}"/>
 <project default-value="${project}"/>
 <scacInputDir default-value="${scac.input.dir}">/apps/opt/scmfs/Devops/sandbox/clone/Code/GENERIC_MAIL_SENDER/SOA</scacInputDir>
 <session default-value="${session}"/>
 <skipIfEmpty default-value="false">${sar.skipIfEmpty}</skipIfEmpty>
 <useDefaultManifestFile default-value="false">${sar.useDefaultManifestFile}</useDefaultManifestFile>
</configuration>
[DEBUG] =======================================================================
[DEBUG] Using transporter WagonTransporter with priority -1.0 for https://repo.maven.apache.org/maven2
[DEBUG] Using connector BasicRepositoryConnector with priority 0.0 for https://repo.maven.apache.org/maven2 via proxy.ebiz.verizon.com:80 with username=VDSI\v528264, password=***
Downloading: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-server/1.1.1-ea/jersey-server-1.1.1-ea.pom
Downloaded: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-server/1.1.1-ea/jersey-server-1.1.1-ea.pom (7 KB at 5.0 KB/sec)
[DEBUG] Writing tracking file /apps/opt/soa/.m2/repository/com/sun/jersey/jersey-server/1.1.1-ea/_remote.repositories
[DEBUG] Writing tracking file /apps/opt/soa/.m2/repository/com/sun/jersey/jersey-server/1.1.1-ea/jersey-server-1.1.1-ea.pom.lastUpdated
[DEBUG] Using transporter WagonTransporter with priority -1.0 for https://repo.maven.apache.org/maven2
[DEBUG] Using connector BasicRepositoryConnector with priority 0.0 for https://repo.maven.apache.org/maven2 via proxy.ebiz.verizon.com:80 with username=VDSI\v528264, password=***
Downloading: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-project/1.1.1-ea/jersey-project-1.1.1-ea.pom
Downloaded: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-project/1.1.1-ea/jersey-project-1.1.1-ea.pom (9 KB at 29.3 KB/sec)
[DEBUG] Writing tracking file /apps/opt/soa/.m2/repository/com/sun/jersey/jersey-project/1.1.1-ea/_remote.repositories
[DEBUG] Writing tracking file /apps/opt/soa/.m2/repository/com/sun/jersey/jersey-project/1.1.1-ea/jersey-project-1.1.1-ea.pom.lastUpdated
[DEBUG] Using transporter WagonTransporter with priority -1.0 for https://repo.maven.apache.org/maven2
[DEBUG] Using connector BasicRepositoryConnector with priority 0.0 for https://repo.maven.apache.org/maven2 via proxy.ebiz.verizon.com:80 with username=VDSI\v528264, password=***
Downloading: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.1.1-ea/jersey-core-1.1.1-ea.pom
Downloaded: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.1.1-ea/jersey-core-1.1.1-ea.pom (8 KB at 28.2 KB/sec)
[DEBUG] Writing tracking file /apps/opt/soa/.m2/repository/com/sun/jersey/jersey-core/1.1.1-ea/_remote.repositories
[DEBUG] Writing tracking file /apps/opt/soa/.m2/repository/com/sun/jersey/jersey-core/1.1.1-ea/jersey-core-1.1.1-ea.pom.lastUpdated
[DEBUG] Using transporter WagonTransporter with priority -1.0 for https://repo.maven.apache.org/maven2
[DEBUG] Using connector BasicRepositoryConnector with priority 0.0 for https://repo.maven.apache.org/maven2 via proxy.ebiz.verizon.com:80 with username=VDSI\v528264, password=***
Downloading: https://repo.maven.apache.org/maven2/javax/ws/rs/jsr311-api/1.1/jsr311-api-1.1.pom
Downloaded: https://repo.maven.apache.org/maven2/javax/ws/rs/jsr311-api/1.1/jsr311-api-1.1.pom (6 KB at 24.3 KB/sec)
[DEBUG] Writing tracking file /apps/opt/soa/.m2/repository/javax/ws/rs/jsr311-api/1.1/_remote.repositories
[DEBUG] Writing tracking file /apps/opt/soa/.m2/repository/javax/ws/rs/jsr311-api/1.1/jsr311-api-1.1.pom.lastUpdated
[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=0, ConflictMarker.markTime=0, ConflictMarker.nodeCount=5, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=4, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=1, ConflictResolver.conflictItemCount=4, DefaultDependencyCollector.collectTime=2672, DefaultDependencyCollector.transformTime=1}
[DEBUG] vsii_mw_soa:GENERIC_MAIL_SENDER:sar:1.0-SNAPSHOT
[DEBUG]    com.sun.jersey:jersey-server:jar:1.1.1-ea:compile
[DEBUG]       com.sun.jersey:jersey-core:jar:1.1.1-ea:compile
[DEBUG]          javax.ws.rs:jsr311-api:jar:1.1:compile
[DEBUG]       asm:asm:jar:3.1:compile
[DEBUG] Using transporter WagonTransporter with priority -1.0 for https://repo.maven.apache.org/maven2
[DEBUG] Using connector BasicRepositoryConnector with priority 0.0 for https://repo.maven.apache.org/maven2 via proxy.ebiz.verizon.com:80 with username=VDSI\v528264, password=***
Downloading: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-server/1.1.1-ea/jersey-server-1.1.1-ea.jar
Downloading: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.1.1-ea/jersey-core-1.1.1-ea.jar
Downloading: https://repo.maven.apache.org/maven2/javax/ws/rs/jsr311-api/1.1/jsr311-api-1.1.jar
Downloaded: https://repo.maven.apache.org/maven2/javax/ws/rs/jsr311-api/1.1/jsr311-api-1.1.jar (45 KB at 48.1 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-server/1.1.1-ea/jersey-server-1.1.1-ea.jar (494 KB at 459.6 KB/sec)
Downloaded: https://repo.maven.apache.org/maven2/com/sun/jersey/jersey-core/1.1.1-ea/jersey-core-1.1.1-ea.jar (291 KB at 204.3 KB/sec)
[DEBUG] Writing tracking file /apps/opt/soa/.m2/repository/com/sun/jersey/jersey-server/1.1.1-ea/_remote.repositories
[DEBUG] Writing tracking file /apps/opt/soa/.m2/repository/com/sun/jersey/jersey-server/1.1.1-ea/jersey-server-1.1.1-ea.jar.lastUpdated
[DEBUG] Writing tracking file /apps/opt/soa/.m2/repository/com/sun/jersey/jersey-core/1.1.1-ea/_remote.repositories
[DEBUG] Writing tracking file /apps/opt/soa/.m2/repository/com/sun/jersey/jersey-core/1.1.1-ea/jersey-core-1.1.1-ea.jar.lastUpdated
[DEBUG] Writing tracking file /apps/opt/soa/.m2/repository/javax/ws/rs/jsr311-api/1.1/_remote.repositories
[DEBUG] Writing tracking file /apps/opt/soa/.m2/repository/javax/ws/rs/jsr311-api/1.1/jsr311-api-1.1.jar.lastUpdated
[INFO]
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ GENERIC_MAIL_SENDER ---
[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=0, ConflictMarker.markTime=0, ConflictMarker.nodeCount=3, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=3, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=0, ConflictResolver.conflictItemCount=3, DefaultDependencyCollector.collectTime=11, DefaultDependencyCollector.transformTime=0}
[DEBUG] org.apache.maven.plugins:maven-clean-plugin:jar:2.5:
[DEBUG]    org.apache.maven:maven-plugin-api:jar:2.0.6:compile
[DEBUG]    org.codehaus.plexus:plexus-utils:jar:3.0:compile
[DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-clean-plugin:2.5
[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-clean-plugin:2.5
[DEBUG]   Imported:  < project>vsii_mw_soa:GENERIC_MAIL_SENDER:1.0-SNAPSHOT
[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-clean-plugin:2.5
[DEBUG]   Included: org.apache.maven.plugins:maven-clean-plugin:jar:2.5
[DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:3.0
[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: sun.misc.Launcher$AppClassLoader@70dea4e]
[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
[DEBUG]   (f) directory = /apps/opt/scmfs/Devops/sandbox/clone/Code/GENERIC_MAIL_SENDER/target
[DEBUG]   (f) excludeDefaultDirectories = false
[DEBUG]   (f) failOnError = true
[DEBUG]   (f) followSymLinks = false
[DEBUG]   (f) outputDirectory = /apps/opt/scmfs/Devops/sandbox/clone/Code/GENERIC_MAIL_SENDER/target/classes
[DEBUG]   (f) reportDirectory = /apps/opt/scmfs/Devops/sandbox/clone/Code/GENERIC_MAIL_SENDER/target/site
[DEBUG]   (f) retryOnError = true
[DEBUG]   (f) skip = false
[DEBUG]   (f) testOutputDirectory = /apps/opt/scmfs/Devops/sandbox/clone/Code/GENERIC_MAIL_SENDER/target/test-classes
[DEBUG] -- end configuration --
[DEBUG] Skipping non-existing directory /apps/opt/scmfs/Devops/sandbox/clone/Code/GENERIC_MAIL_SENDER/target
[DEBUG] Skipping non-existing directory /apps/opt/scmfs/Devops/sandbox/clone/Code/GENERIC_MAIL_SENDER/target/classes
[DEBUG] Skipping non-existing directory /apps/opt/scmfs/Devops/sandbox/clone/Code/GENERIC_MAIL_SENDER/target/test-classes
[DEBUG] Skipping non-existing directory /apps/opt/scmfs/Devops/sandbox/clone/Code/GENERIC_MAIL_SENDER/target/site
[INFO]
[INFO] --- maven-resources-plugin:3.0.1:resources (default-resources) @ GENERIC_MAIL_SENDER ---
[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=0, ConflictMarker.markTime=1, ConflictMarker.nodeCount=69, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=28, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=2, ConflictResolver.conflictItemCount=68, DefaultDependencyCollector.collectTime=335, DefaultDependencyCollector.transformTime=3}
[DEBUG] org.apache.maven.plugins:maven-resources-plugin:jar:3.0.1:
[DEBUG]    org.apache.maven:maven-plugin-api:jar:3.0:compile
[DEBUG]       org.sonatype.sisu:sisu-inject-plexus:jar:1.4.2:compile
[DEBUG]          org.sonatype.sisu:sisu-inject-bean:jar:1.4.2:compile
[DEBUG]             org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7:compile
[DEBUG]    org.apache.maven:maven-core:jar:3.0:compile
[DEBUG]       org.apache.maven:maven-settings-builder:jar:3.0:compile
[DEBUG]       org.apache.maven:maven-repository-metadata:jar:3.0:compile
[DEBUG]       org.apache.maven:maven-model-builder:jar:3.0:compile
[DEBUG]       org.apache.maven:maven-aether-provider:jar:3.0:runtime
[DEBUG]       org.sonatype.aether:aether-impl:jar:1.7:compile
[DEBUG]          org.sonatype.aether:aether-spi:jar:1.7:compile
[DEBUG]       org.sonatype.aether:aether-api:jar:1.7:compile
[DEBUG]       org.sonatype.aether:aether-util:jar:1.7:compile
[DEBUG]       org.codehaus.plexus:plexus-classworlds:jar:2.2.3:compile
[DEBUG]       org.codehaus.plexus:plexus-component-annotations:jar:1.6:compile
[DEBUG]       org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile
[DEBUG]          org.sonatype.plexus:plexus-cipher:jar:1.4:compile
[DEBUG]    org.apache.maven:maven-artifact:jar:3.0:compile
[DEBUG]    org.apache.maven:maven-settings:jar:3.0:compile
[DEBUG]    org.apache.maven:maven-model:jar:3.0:compile
[DEBUG]    org.codehaus.plexus:plexus-utils:jar:3.0.24:compile
[DEBUG]    org.apache.maven.shared:maven-filtering:jar:3.1.1:compile
[DEBUG]       org.apache.maven.shared:maven-shared-utils:jar:3.0.0:compile
[DEBUG]          commons-io:commons-io:jar:2.4:compile
[DEBUG]          com.google.code.findbugs:jsr305:jar:2.0.1:compile
[DEBUG]       org.sonatype.plexus:plexus-build-api:jar:0.0.7:compile
[DEBUG]    org.codehaus.plexus:plexus-interpolation:jar:1.22:compile
[DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-resources-plugin:3.0.1
[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-resources-plugin:3.0.1
[DEBUG]   Imported:  < project>vsii_mw_soa:GENERIC_MAIL_SENDER:1.0-SNAPSHOT
[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-resources-plugin:3.0.1
[DEBUG]   Included: org.apache.maven.plugins:maven-resources-plugin:jar:3.0.1
[DEBUG]   Included: org.sonatype.sisu:sisu-inject-bean:jar:1.4.2
[DEBUG]   Included: org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7
[DEBUG]   Included: org.sonatype.aether:aether-util:jar:1.7
[DEBUG]   Included: org.codehaus.plexus:plexus-component-annotations:jar:1.6
[DEBUG]   Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3
[DEBUG]   Included: org.sonatype.plexus:plexus-cipher:jar:1.4
[DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:3.0.24
[DEBUG]   Included: org.apache.maven.shared:maven-filtering:jar:3.1.1
[DEBUG]   Included: org.apache.maven.shared:maven-shared-utils:jar:3.0.0
[DEBUG]   Included: commons-io:commons-io:jar:2.4
[DEBUG]   Included: com.google.code.findbugs:jsr305:jar:2.0.1
[DEBUG]   Included: org.sonatype.plexus:plexus-build-api:jar:0.0.7
[DEBUG]   Included: org.codehaus.plexus:plexus-interpolation:jar:1.22
[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:3.0.1:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:3.0.1, parent: sun.misc.Launcher$AppClassLoader@70dea4e]
[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:3.0.1:resources' with basic configurator -->
[DEBUG]   (f) addDefaultExcludes = true
[DEBUG]   (f) buildFilters = []
[DEBUG]   (f) escapeString = \
[DEBUG]   (f) escapeWindowsPaths = true
[DEBUG]   (f) fileNameFiltering = false
[DEBUG]   (s) includeEmptyDirs = false
[DEBUG]   (s) outputDirectory = /apps/opt/scmfs/Devops/sandbox/clone/Code/GENERIC_MAIL_SENDER/target/classes
[DEBUG]   (s) overwrite = false
[DEBUG]   (f) project = MavenProject: vsii_mw_soa:GENERIC_MAIL_SENDER:1.0-SNAPSHOT @ /apps/opt/scmfs/Devops/sandbox/clone/Code/GENERIC_MAIL_SENDER/pom.xml
[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: /apps/opt/scmfs/Devops/sandbox/clone/Code/GENERIC_MAIL_SENDER/src/main/resources, PatternSet [includes: {}, excludes: {}]}}]
[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@507b79f7
[DEBUG]   (f) skip = false
[DEBUG]   (f) supportMultiLineFiltering = false
[DEBUG]   (f) useBuildFilters = true
[DEBUG]   (s) useDefaultDelimiters = true
[DEBUG] -- end configuration --
[DEBUG] properties used {java.vendor=Oracle Corporation, env.LESSOPEN=|/usr/bin/lesspipe.sh %s, sun.java.launcher=SUN_STANDARD, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, os.name=Linux, sun.boot.class.path=/apps/opt/scmfs/Devops/jdk1.8.0_65/jre/lib/resources.jar:/apps/opt/scmfs/Devops/jdk1.8.0_65/jre/lib/rt.jar:/apps/opt/scmfs/Devops/jdk1.8.0_65/jre/lib/sunrsasign.jar:/apps/opt/scmfs/Devops/jdk1.8.0_65/jre/lib/jsse.jar:/apps/opt/scmfs/Devops/jdk1.8.0_65/jre/lib/jce.jar:/apps/opt/scmfs/Devops/jdk1.8.0_65/jre/lib/charsets.jar:/apps/opt/scmfs/Devops/jdk1.8.0_65/jre/lib/jfr.jar:/apps/opt/scmfs/Devops/jdk1.8.0_65/jre/classes, env.PWD=/apps/opt/scmfs/Devops/sandbox/clone/Code/GENERIC_MAIL_SENDER, env.LANG=en_US.UTF-8, java.vm.specification.vendor=Oracle Corporation, java.runtime.version=1.8.0_65-b17, env.HISTSIZE=1000, user.name=vzpdvops, maven.build.version=Apache Maven 3.3.9 (bb52d8502b132ec0a5a3f4c09453c07478323dc5; 2015-11-10T11:41:47-05:00), env.USER=vzpdvops, oraclePassword=, env.SHELL=/bin/bash, env.NLSPATH=/usr/dt/lib/nls/msg/%L/%N.cat, regenerateRulebase=false, forceDefault=true, env.PATH=/apps/opt/scmfs/Devops/apache-maven-3.3.9/bin:/apps/opt/scmfs/Devops/jdk1.8.0_65/bin:/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/usr/X11R6/bin:/opt/IBMJava2-amd64-142/bin:/opt/CA/AccessControl/bin:/opt/CA/AccessControl/lbin:/usr/seos/bin:/bin:/usr/bin:/etc:/usr/sbin:/usr/ucb:/home/vzpdvops/bin:/usr/bin/X11:/sbin:/usr/seos/bin:., user.language=en, oracleUsername=, sun.boot.library.path=/apps/opt/scmfs/Devops/jdk1.8.0_65/jre/lib/amd64, classworlds.conf=/apps/opt/scmfs/Devops/apache-maven-3.3.9/bin/m2.conf, java.version=1.8.0_65, user.timezone=US/Eastern, project.baseUri=file:/apps/opt/scmfs/Devops/sandbox/clone/Code/GENERIC_MAIL_SENDER/, env.MW_HOME=/apps/opt/scmfs/Devops/12c/vsapmiddleware, maven.build.timestamp=2016-07-25T09:03:16Z, composite.partition=default, sun.arch.data.model=64, oracleMiddlewareHome=/home/myhome/Oracle/Middleware, java.endorsed.dirs=/apps/opt/scmfs/Devops/jdk1.8.0_65/jre/lib/endorsed, env.JDK_HOME=/opt/IBMJava2-amd64-142, composite.name=GENERIC_MAIL_SENDER, sun.cpu.isalist=, sun.jnu.encoding=UTF-8, file.encoding.pkg=sun.io, env.SHLVL=2, file.separator=/, env.HOSTNAME=bgnsacovn20, java.specification.name=Java Platform API Specification, serverUrl=http://localhost:7003, java.class.version=52.0, org.slf4j.simpleLogger.defaultLogLevel=debug, user.country=US, java.home=/apps/opt/scmfs/Devops/jdk1.8.0_65/jre, java.vm.info=mixed mode, env.LOGNAME=vzpdvops, os.version=2.6.18-238.9.1.0.1.el5xen, env.G_BROKEN_FILENAMES=1, path.separator=:, scac.output=/apps/opt/scmfs/Devops/sandbox/clone/Code/GENERIC_MAIL_SENDER/target/out.xml, java.vm.version=25.65-b01, user=, env.JAVA_HOME=/apps/opt/scmfs/Devops/jdk1.8.0_65, java.awt.printerjob=sun.print.PSPrinterJob, env.TERM=xterm, sun.io.unicode.encoding=UnicodeLittle, composite.revision=1.0, awt.toolkit=sun.awt.X11.XToolkit, user.home=/home/vzpdvops, java.specification.vendor=Oracle Corporation, env.CLASSPATH=/apps/opt/soa/.m2/repository/com/sun/jersey/jersey-server/1.2/jersey-server-1.2.jar, env.M2_HOME=/apps/opt/scmfs/Devops/apache-maven-3.3.9, oracleServerUrl=http://localhost:7003, scac.output.dir=/apps/opt/scmfs/Devops/sandbox/clone/Code/GENERIC_MAIL_SENDER/target, java.library.path=/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib, java.vendor.url=http://java.oracle.com/, scac.input.dir=/apps/opt/scmfs/Devops/sandbox/clone/Code/GENERIC_MAIL_SENDER/SOA, env.MAVEN_CMD_LINE_ARGS= -X clean package, java.vm.vendor=Oracle Corporation, oracleServerName=soa_server1, keepInstancesOnRedeploy=false, maven.home=/apps/opt/scmfs/Devops/apache-maven-3.3.9, java.runtime.name=Java(TM) SE Runtime Environment, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher -X clean package, java.class.path=/apps/opt/scmfs/Devops/apache-maven-3.3.9/boot/plexus-classworlds-2.5.2.jar, oracleHome=${env.ORACLE_HOME}, env.SEOSDIR=/opt/CA/AccessControl, maven.version=3.3.9, env.CVS_RSH=ssh, env.XFILESEARCHPATH=/usr/dt/app-defaults/%L/Dt, java.vm.specification.name=Java Virtual Machine Specification, java.vm.specification.version=1.8, sun.cpu.endian=little, sun.os.patch.level=unknown, env.HOME=/home/vzpdvops, env.LS_COLORS=no=00:fi=00:di=00;34:ln=00;36:pi=40;33:so=00;35:bd=40;33;01:cd=40;33;01:or=01;05;37;41:mi=01;05;37;41:ex=00;32:*.cmd=00;32:*.exe=00;32:*.com=00;32:*.btm=00;32:*.bat=00;32:*.sh=00;32:*.csh=00;32:*.tar=00;31:*.tgz=00;31:*.arj=00;31:*.taz=00;31:*.lzh=00;31:*.zip=00;31:*.z=00;31:*.Z=00;31:*.gz=00;31:*.bz2=00;31:*.bz=00;31:*.tz=00;31:*.rpm=00;31:*.cpio=00;31:*.jpg=00;35:*.gif=00;35:*.bmp=00;35:*.xbm=00;35:*.xpm=00;35:*.png=00;35:*.tif=00;35:, java.io.tmpdir=/tmp, maven.multiModuleProjectDirectory=/apps/opt/scmfs/Devops/sandbox/clone/Code/GENERIC_MAIL_SENDER, java.vendor.url.bug=http://bugreport.sun.com/bugreport/, overwrite=true, scac.error=/apps/opt/scmfs/Devops/sandbox/clone/Code/GENERIC_MAIL_SENDER/target/error.txt, java.awt.graphicsenv=sun.awt.X11GraphicsEnvironment, os.arch=amd64, scatest.result=/apps/opt/scmfs/Devops/sandbox/clone/Code/GENERIC_MAIL_SENDER/target/testResult, java.ext.dirs=/apps/opt/scmfs/Devops/jdk1.8.0_65/jre/lib/ext:/usr/java/packages/lib/ext, user.dir=/apps/opt/scmfs/Devops/sandbox/clone/Code/GENERIC_MAIL_SENDER, password=, env.INPUTRC=/etc/inputrc, line.separator=
, env.A__z="*SHLVL, java.vm.name=Java HotSpot(TM) 64-Bit Server VM, scac.displayLevel=1, file.encoding=UTF-8, env.MAIL=/var/spool/mail/vzpdvops, java.specification.version=1.8, input=GENERIC_MAIL_SENDER, scac.input=/apps/opt/scmfs/Devops/sandbox/clone/Code/GENERIC_MAIL_SENDER/SOA/composite.xml, env.MAVEN_PROJECTBASEDIR=/apps/opt/scmfs/Devops/sandbox/clone/Code/GENERIC_MAIL_SENDER}
[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!
[DEBUG] resource with targetPath null
directory /apps/opt/scmfs/Devops/sandbox/clone/Code/GENERIC_MAIL_SENDER/src/main/resources
excludes []
includes []
[INFO] skip non existing resourceDirectory /apps/opt/scmfs/Devops/sandbox/clone/Code/GENERIC_MAIL_SENDER/src/main/resources
[DEBUG] no use filter components
[INFO]
[INFO] --- oracle-soa-plugin:12.2.1-0-0:compile (default-compile) @ GENERIC_MAIL_SENDER ---
[DEBUG] Configuring mojo com.oracle.soa.plugin:oracle-soa-plugin:12.2.1-0-0:compile from plugin realm ClassRealm[extension>com.oracle.soa.plugin:oracle-soa-plugin:12.2.1-0-0, parent: sun.misc.Launcher$AppClassLoader@70dea4e]
[DEBUG] Configuring mojo 'com.oracle.soa.plugin:oracle-soa-plugin:12.2.1-0-0:compile' with basic configurator -->
[DEBUG]   (f) classesDirectory = /apps/opt/scmfs/Devops/sandbox/clone/Code/GENERIC_MAIL_SENDER/target/classes
[DEBUG]   (f) composite = /apps/opt/scmfs/Devops/sandbox/clone/Code/GENERIC_MAIL_SENDER/SOA/composite.xml
[DEBUG]   (f) defaultManifestFile = /apps/opt/scmfs/Devops/sandbox/clone/Code/GENERIC_MAIL_SENDER/target/classes/META-INF/MANIFEST.MF
[DEBUG]   (f) failOnWarning = false
[DEBUG]   (f) finalName = GENERIC_MAIL_SENDER-1.0-SNAPSHOT
[DEBUG]   (f) forceCreation = false
[DEBUG]   (f) ignoreErrors = false
[DEBUG]   (f) level = 1
[DEBUG]   (f) noComponents = false
[DEBUG]   (f) outputDirectory = /apps/opt/scmfs/Devops/sandbox/clone/Code/GENERIC_MAIL_SENDER/target
[DEBUG]   (f) pluginArtifacts = [com.oracle.soa.plugin:oracle-soa-plugin:maven-plugin:12.2.1-0-0:, com.oracle.weblogic:wls_sharedLibraries.wljmxclient:jar:12.2.1-0-0:compile, com.oracle.weblogic:wls_sharedLibraries.wlclient:jar:12.2.1-0-0:compile, com.oracle.weblogic:wls_sharedLibraries.wls-api:jar:12.2.1-0-0:compile, org.codehaus.plexus:plexus-archiver:jar:2.4.1:compile, org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile, junit:junit:jar:3.8.1:compile, classworlds:classworlds:jar:1.1-alpha-2:compile, org.codehaus.plexus:plexus-io:jar:2.0.7:compile, org.apache.commons:commons-compress:jar:1.5:compile, org.tukaani:xz:jar:1.2:compile, org.apache.maven:maven-plugin-api:jar:2.0.6:compile, com.oracle.soa:soa-infra-mgmt:jar:12.2.1-0-0:compile, com.oracle.soa:fabric-runtime:jar:12.2.1-0-0:compile, com.oracle.fmwshare:share:jar:12.2.1-0-0:compile, com.oracle.soa:tracking-core:jar:12.2.1-0-0:compile, com.oracle.soa:tracking-fabric:jar:12.2.1-0-0:compile, com.oracle.soa:commons-cli-1.1:jar:12.2.1-0-0:compile, com.oracle.coherence:coherence:jar:12.2.1-0-0:compile, com.oracle.weblogic:com.bea.core.xml.xmlbeans:jar:12.2.1-0-0:compile, org.apache.maven:maven-artifact:jar:2.0.6:compile, org.apache.maven.plugins:maven-jar-plugin:jar:2.4:compile, org.apache.maven:maven-project:jar:2.0.6:compile, org.apache.maven:maven-profile:jar:2.0.6:compile, org.apache.maven:maven-artifact-manager:jar:2.0.6:compile, org.apache.maven:maven-plugin-registry:jar:2.0.6:compile, org.apache.maven:maven-model:jar:2.0.6:compile, org.apache.maven:maven-archiver:jar:2.5:compile, commons-lang:commons-lang:jar:2.1:compile, org.apache.maven.plugins:maven-resources-plugin:jar:2.6:compile, org.apache.maven:maven-core:jar:2.0.6:compile, org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.6:compile, org.apache.maven.reporting:maven-reporting-api:jar:2.0.6:compile, org.apache.maven.doxia:doxia-sink-api:jar:1.0-alpha-7:compile, org.apache.maven:maven-repository-metadata:jar:2.0.6:compile, org.apache.maven:maven-error-diagnostics:jar:2.0.6:compile, commons-cli:commons-cli:jar:1.0:compile, org.apache.maven:maven-plugin-descriptor:jar:2.0.6:compile, org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4:compile, org.apache.maven:maven-settings:jar:2.0.6:compile, org.apache.maven:maven-monitor:jar:2.0.6:compile, org.codehaus.plexus:plexus-interpolation:jar:1.13:compile, org.apache.maven.shared:maven-filtering:jar:1.1:compile, org.sonatype.plexus:plexus-build-api:jar:0.0.4:compile, jaxen:jaxen:jar:1.1.6:compile, org.codehaus.plexus:plexus-utils:jar:3.0.10:compile, commons-io:commons-io:jar:2.4:compile, com.oracle.soa:oracle.bpm.project.catalog:jar:12.2.1-0-0:compile, com.oracle.soa:oracle.bpm.project.compile:jar:12.2.1-0-0:compile, com.oracle.soa:oracle.bpm.project.io:jar:12.2.1-0-0:compile, com.oracle.soa:oracle.bpm.project:jar:12.2.1-0-0:compile, com.oracle.soa:oracle.bpm.common.model:jar:12.2.1-0-0:compile, com.oracle.soa:oracle.bpm.project.model:jar:12.2.1-0-0:compile, com.oracle.soa:oracle.bpm.bpm-services.interface:jar:12.2.1-0-0:compile, com.oracle.soa:oracle.bpm.web-resources:jar:12.2.1-0-0:compile, com.oracle.soa:orabpel:jar:12.2.1-0-0:compile, com.oracle.soa:orabpel-validator:jar:12.2.1-0-0:compile, com.oracle.soa:orabpel-common:jar:12.2.1-0-0:compile, com.oracle.soa:orabpel-thirdparty:jar:12.2.1-0-0:compile, com.oracle.soa:soa-infra-tools:jar:12.2.1-0-0:compile, com.oracle.soa:bpm-infra:jar:12.2.1-0-0:compile, com.oracle.weblogic:com.bea.core.binxml_1.8.0.0:jar:12.2.1-0-0:compile, com.oracle.soa:testfwk-xbeans:jar:12.2.1-0-0:compile, com.oracle.soa:bpm-services:jar:12.2.1-0-0:compile, com.oracle.soa:mediator_client:jar:12.2.1-0-0:compile, com.oracle.soa:rl:jar:12.2.1-0-0:compile, com.oracle.soa:rulesdk2:jar:12.2.1-0-0:compile, com.oracle.fmwshare:com.oracle.webservices.orawsdl-api:jar:12.2.1-0-0:compile, com.oracle.jrf.infra.common:jrf-api:jar:12.2.1-0-0:compile, com.oracle.weblogic:com.bea.core.apache.commons.lang:jar:2.6.0-0-2:compile, com.oracle.fmwshare:com.oracle.classloader.pcl:jar:12.2.1-0-0:compile, com.oracle.fmwshare:jrf_ws_client.com.oracle.webservices.fmw.client:jar:12.2.1-0-0:compile, com.oracle.weblogic:javax.management.j2ee:jar:12.2.1-0-0:compile, com.oracle.fmwshare:adfbcsvc-share:jar:12.2.1-0-0:compile, com.oracle.fmwshare:adfm:jar:12.2.1-0-0:compile, com.oracle.fmwshare:adf-share-base:jar:12.2.1-0-0:compile, com.oracle.fmwshare:adf-share-ca:jar:12.2.1-0-0:compile, com.oracle.fmwshare:adflogginghandler:jar:12.2.1-0-0:compile, com.oracle.fmwshare:adf-share-support:jar:12.2.1-0-0:compile, com.oracle.fmwshare:jsp-el-api:jar:12.2.1-0-0:compile, com.oracle.fmwshare:dms:jar:12.2.1-0-0:compile, com.oracle.javavm.jrf:ojdbc6dms:jar:12.1.0-2-1:compile, com.oracle.fmwshare:jmxframework:jar:12.2.1-0-0:compile, com.oracle.fmwshare:jmxspi:jar:12.2.1-0-0:compile, com.oracle.fmwshare:jps-internal:jar:12.2.1-0-0:compile, com.oracle.fmwshare:jps-unsupported-api:jar:12.2.1-0-0:compile, com.oracle.fmwshare:oracle.logging-utils:jar:12.2.1-0-0:compile, com.oracle.fmwshare:mdsrt:jar:12.2.1-0-0:compile, com.oracle.fmwshare:oramds:jar:12.2.1-0-0:compile, com.oracle.fmwshare:ojdl:jar:12.2.1-0-0:compile, com.oracle.toplink:eclipselink:jar:12.2.1-0-0:compile, com.oracle.wsm.common:wsm-policy-core:jar:12.2.1-0-0:compile, com.oracle.wsm.common:wsm-secpol:jar:12.2.1-0-0:compile, com.oracle.fmwshare:xml:jar:12.2.1-0-0:compile, com.oracle.fmwshare:xmlparserv2:jar:12.2.1-0-0:compile, com.oracle.fmwshare:xmlef:jar:12.2.1-0-0:compile, commons-beanutils:commons-beanutils:jar:1.7.0:compile, commons-logging:commons-logging:jar:1.0.3:compile, com.oracle.fmwshare:org.apache.commons.digester_1.8:jar:12.2.1-0-0:compile, com.oracle.fmwshare:org.springframework_3.1.0:jar:12.2.1-0-0:compile, com.oracle.pki:oraclepki:jar:12.2.1-0-0:compile]
[DEBUG]   (f) project = MavenProject: vsii_mw_soa:GENERIC_MAIL_SENDER:1.0-SNAPSHOT @ /apps/opt/scmfs/Devops/sandbox/clone/Code/GENERIC_MAIL_SENDER/pom.xml
[DEBUG]   (f) reportErrors = false
[DEBUG]   (f) scacInputDir = /apps/opt/scmfs/Devops/sandbox/clone/Code/GENERIC_MAIL_SENDER/SOA
[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@507b79f7
[DEBUG]   (f) showProcessLog = false
[DEBUG]   (f) skipIfEmpty = false
[DEBUG]   (f) useDefaultManifestFile = false
[DEBUG] -- end configuration --
[INFO] ------------------------------------------------------------------------
[INFO] ORACLE SOA MAVEN PLUGIN - COMPILE
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] ABOUT TO RUN oracle.soa.scac.ValidateComposite...
[INFO] The environment variable/property 'oracle.home' or 'soa.oracle.com is not set.
[INFO] If you want to compile a composite with a component that depends
on MDS - like a Human Task or Business Rule - AND you want to use a file
based MDS repository, you will need to specify 'oracle.home' AND 'soa.oracle.com' OR update
your .adf/META-INF/adf-config.xml to point to your file-based MDS.
If you specify oracle.home it must point to the SOA Quickstart or
JDeveloper install directory with '/soa' appended to it, unless you
update the adf-config.xml to remove the reference to oracle.home.
[INFO] compile: Executing: [cmd:[/apps/opt/scmfs/Devops/jdk1.8.0_65/bin/java, -Djava.protocol.handler.pkgs=oracle.mds.net.protocol|oracle.fabric.common.classloaderurl.handler|oracle.fabric.common.uddiurl.handler, oracle.soa.scac.ValidateComposite, /apps/opt/scmfs/Devops/sandbox/clone/Code/GENERIC_MAIL_SENDER/SOA/composite.xml, -level=1]]
[INFO] Process being executed, waiting for completion.
[INFO] Process log is being buffered and will only be shown if there is an error executing the process.  If you want to see the logs as the process is run then pass -DshowProcessLog=true
[INFO] compile: [cmd:[/apps/opt/scmfs/Devops/jdk1.8.0_65/bin/java, -Djava.protocol.handler.pkgs=oracle.mds.net.protocol|oracle.fabric.common.classloaderurl.handler|oracle.fabric.common.uddiurl.handler, oracle.soa.scac.ValidateComposite, /apps/opt/scmfs/Devops/sandbox/clone/Code/GENERIC_MAIL_SENDER/SOA/composite.xml, -level=1]] exit code=1
[INFO] processLog: -------------------------------------
[INFO] [exec] soa.mds.consolidation is set to false
[exec] Jul 25, 2016 5:03:18 AM oracle.soa.scac.ValidateComposite loadWSDLs
[exec] WARNING: Validating WSDLs from WSDLManager....  with option UseSoaInfraMds:false
[exec] Jul 25, 2016 5:03:18 AM oracle.fabric.common.wsdl.SchemaManager isIncrementalBuildSupported
[exec] INFO: XMLSchema incremental build enabled.
[exec] /apps/opt/scmfs/Devops/sandbox/clone/Code/GENERIC_MAIL_SENDER/SOA/composite.xml:88: error: com/sun/research/ws/wadl/Application
[exec] com/sun/research/ws/wadl/Application
[exec] java.lang.NoClassDefFoundError: com/sun/research/ws/wadl/Application
[exec]  at oracle.integration.platform.blocks.rest.bc.WADLManager.parseWADL2Object(WADLManager.java:149)
[exec]  at oracle.integration.platform.blocks.rest.bc.WADLManager.loadWADL(WADLManager.java:67)
[exec]  at oracle.soa.scac.ValidateComposite.checkBindingInWsdlManager(ValidateComposite.java:427)
[exec]  at oracle.soa.scac.ValidateComposite.validateBindings(ValidateComposite.java:1058)
[exec]  at oracle.soa.scac.ValidateComposite.validateReferences(ValidateComposite.java:1244)
[exec]  at oracle.soa.scac.ValidateComposite.doValidation0(ValidateComposite.java:596)
[exec]  at oracle.soa.scac.ValidateComposite.doValidation(ValidateComposite.java:577)
[exec]  at oracle.soa.scac.ValidateComposite.run0(ValidateComposite.java:228)
[exec]  at oracle.soa.scac.ValidateComposite.run(ValidateComposite.java:209)
[exec]  at oracle.soa.scac.ValidateComposite.main(ValidateComposite.java:201)
[exec] Caused by: java.lang.ClassNotFoundException: com.sun.research.ws.wadl.Application
[exec]  at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
[exec]  at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
[exec]  at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:331)
[exec]  at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
[exec]  ... 10 more

[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE

[INFO] ------------------------------------------------------------------------
[INFO] Total time: 10.578 s
[INFO] Finished at: 2016-07-25T05:03:19-04:00
[INFO] Final Memory: 14M/242M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal com.oracle.soa.plugin:oracle-soa-plugin:12.2.1-0-0:compile (default-compile) on project GENERIC_MAIL_SENDER: SOA COMPILE FAILED with value: 1 -> [Help 1]
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal com.oracle.soa.plugin:oracle-soa-plugin:12.2.1-0-0:compile (default-compile) on project GENERIC_MAIL_SENDER: SOA COMPILE FAILED with value: 1
       at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:212)
       at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:153)
       at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:145)
       at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:116)
       at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:80)
       at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build(SingleThreadedBuilder.java:51)
       at org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:128)
       at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:307)
       at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:193)
       at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:106)
       at org.apache.maven.cli.MavenCli.execute(MavenCli.java:863)
       at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:288)
       at org.apache.maven.cli.MavenCli.main(MavenCli.java:199)
       at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
       at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
       at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
       at java.lang.reflect.Method.invoke(Method.java:497)
       at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:289)
       at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:229)
       at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:415)
       at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:356)
Caused by: org.apache.maven.plugin.MojoExecutionException: SOA COMPILE FAILED with value: 1
       at com.oracle.soa.plugin.SarCompileMojo.execute(SarCompileMojo.java:319)
       at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:134)
       at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:207)
       ... 20 more
[ERROR]
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
7 years ago
Hi All,
I'm trying to compile Oracle SOA code (12.2.1) using Maven and I'm getting error that is attached. Can anyone please help me?
I have imported the jersey library that is required for this build. But still I'm seeing the same error.

Regards,
Aditya
7 years ago