From 773cff1147e756eb9be6d4a56dc5f70537f172fc Mon Sep 17 00:00:00 2001 From: ramverma Date: Sat, 14 Jul 2018 19:05:57 +0100 Subject: Adding client full module to apex-pdp Change-Id: Id6e4e37b7740eeb3d83998e596c0c963c93e64f2 Issue-ID: POLICY-864 Signed-off-by: ramverma --- client/client-full/pom.xml | 183 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 183 insertions(+) create mode 100644 client/client-full/pom.xml (limited to 'client/client-full/pom.xml') diff --git a/client/client-full/pom.xml b/client/client-full/pom.xml new file mode 100644 index 000000000..399664b14 --- /dev/null +++ b/client/client-full/pom.xml @@ -0,0 +1,183 @@ + + + 4.0.0 + + org.onap.policy.apex-pdp.client + client + 2.0.0-SNAPSHOT + + + client-full + ${project.artifactId} + Web clients for managing Apex engines + + + + org.onap.policy.apex-pdp.client + client-editor + ${project.version} + + + org.onap.policy.apex-pdp.client + client-monitoring + ${project.version} + + + org.onap.policy.apex-pdp.client + client-deployment + ${project.version} + + + org.glassfish.jersey.containers + jersey-container-grizzly2-http + ${version.jersey} + + + + + + + src/main/resources + + webapp/**/*.* + + + + ../client-monitoring/target/client-monitoring-${project.version} + + **/*.* + + webapp/monitoring + + + ../client-editor/target/client-editor-${project.version} + + **/*.* + + webapp/editor + + + ../client-deployment/target/client-deployment-${project.version} + + **/*.* + + webapp/deployment + + + + install + ${project.build.directory}/classes + + + org.apache.maven.plugins + maven-shade-plugin + + + package + + shade + + + + + ${project.artifactId}-uber-${project.version} + true + full + + + *:* + + + + + *:* + + META-INF/*.SF + META-INF/*.DSA + META-INF/*.RSA + + + + + + + reference.conf + + + log4j.properties + + + org.onap.policy.apex.client.full.rest.ApexServicesRestMain + + + + + + org.apache.maven.plugins + maven-war-plugin + + ui + target/classes/webapp + src/main/resources/webapp/WEB-INF/web.xml + + + + prepare-package + + war + + + + + + org.codehaus.mojo + build-helper-maven-plugin + 3.0.0 + + + attach-artifacts + package + + attach-artifact + + + + + ${project.build.directory}/${project.artifactId}-${project.version}-ui.war + war + + + ${project.build.directory}/${project.artifactId}-uber-${project.version}.jar + uber.jar + + + + + + + + + \ No newline at end of file -- cgit 1.2.3-korg