Using the Oracle SOA Suite Maven Archetype

Use the Oracle SOA Suite archetype to generate a POM file for a SOA application. Run the following command from the parent directory into which you want to add a SOA application. The SOA application is created in a subdirectory named from the value of the artifactId property.

Note:

SOA Applications created using the Oracle SOA Suite Maven archetype are the same as those created in Oracle JDeveloper using the Create SOA Application wizard.

mvn archetype:generate 
 -DarchetypeGroupId=com.oracle.soa.archetype
 -DarchetypeArtifactId=oracle-soa-application
 -DarchetypeVersion=???
 -DarchetypeRepository=local
 -DgroupId=org.my.test
 -DartifactId=test-soa-application
 -DprojectName=test-soa-project
 -Dversion=1.0-SNAPSHOT

Where:

Property Description

archetypeGroupId

Enter the group ID of the archetype to use (com.oracle.soa.archetype).

archetypeArtifactId

Enter the artifact ID of the archetype to use (oracle-soa-application).

archetypeVersion

Enter the archetype version (???).

archetypeRepository

Enter the Maven repository to use. (Optional)

groupId

Enter the group ID of the project to build (for this example, org.my.test).

artifactId

Enter the artifact ID of the project to build. This becomes the name of the subdirectory (for this example, test-soa-project) in the current directory. The SOA application and the first SOA project are created in this subdirectory.

projectName

Enter the name for the SOA Project to be created inside the SOA application This is also the name of the composite.

package

Enter the name for the SOA Project to be created inside the SOA application. (Optional)

version

Enter the version of the project to build (for this example, 1.0-SNAPSHOT)