Create emailtemplateservice deploy pom in order to deploy the simple-xml jar to $CATALINA_HOME/shared-lib
Description
Currently, the emailtemplateservice (ETS) is deployed to Tomcat as an assembly. The assembly includes a dependency on simple-xml that is deployed to /shared/lib. A standard ETS build that does not rely on the assembly payload does not deploy simple-xml to /shared/lib. This is easily rectified by adding a deploy pom to do this work. Additionally, move the assembly folder to the new /deploy folder and mirror the /kernel/deploy folder structure.
Currently, the emailtemplateservice (ETS) is deployed to Tomcat as an assembly. The assembly includes a dependency on simple-xml that is deployed to /shared/lib. A standard ETS build that does not rely on the assembly payload does not deploy simple-xml to /shared/lib. This is easily rectified by adding a deploy pom to do this work. Additionally, move the assembly folder to the new /deploy folder and mirror the /kernel/deploy folder structure.
emailtemplateservice
/api
/deploy
/assembly
pom.xml
. . .
/shared
pom.xml
pom.xml
/impl
. . .
<dependency>
<groupId>org.simpleframework</groupId>
<artifactId>simple-xml</artifactId>
<scope>compile</scope>
</dependency>