Welcome to the Jazz Community Forum
Using maven style artifacts for deployment with RAF 3.0.0.4

- Manually upload of the artifact named <component>1.2.3.4.ear/.war/.jar
- Use wget to download the file from a maven repository.
- Push the maven artifact to RAM and use RAM api to download the artifact as a step in RAF.
3 answers

if <maven version is snapshot> or <release version not yet built>
mvn install # build & test artifacts and upload to repository
mvn -Dmdep.stripVersion=true -Dpkg_stg_dir=$pkg_dir -DoutputDirectory=$pkg_dir dependency:copy
Comments

Thanks Bruce but my team will be using RAF for large scale deployments to Many complex Prod Envs so we were looking for a solution with RAF. Having said this, I like the flexibility built into maven to remove the version identifier, this is a neat idea but we also rely on the artifacts version numbers as an added check or audit that the correct code has been deployed to the portal server so we want to keep the artifact numbers in tact. But you did spark an idea, maybe I can deploy using raf by renaming the file prior to deployment to make it fit the template and then rename the artifact filename version number after the installation process has been completed but before we start up the applications.