From: Christopher Lott (cl778h) Date: Sat, 26 Aug 2017 10:45:20 +0000 (-0400) Subject: Skip deployment of widget-ms jar X-Git-Tag: v1.3.0~36 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F65%2F8865%2F1;p=portal.git Skip deployment of widget-ms jar Add plugin to skip deployment of ecomp-portal-widget-ms onejar. Fix problem of manage widget pop up calendar moved off event date input field. Issue: PORTAL-80 Change-Id: Id783989fed6a248ceb1a12bfce8403f6219e2e61 Signed-off-by: Christopher Lott (cl778h) --- diff --git a/ecomp-portal-FE-common/client/app/views/dashboard/dashboard-widget.controller.less b/ecomp-portal-FE-common/client/app/views/dashboard/dashboard-widget.controller.less index a9c3d800..b4cb0100 100644 --- a/ecomp-portal-FE-common/client/app/views/dashboard/dashboard-widget.controller.less +++ b/ecomp-portal-FE-common/client/app/views/dashboard/dashboard-widget.controller.less @@ -119,8 +119,8 @@ padding-bottom: 20px; .add-widget-field .btn-calendar-icon { position: relative; width: 20px; - right:-225px; - top:-27px; + right: 25px; + top: 0px; } .dialog-control{ bottom:30px; @@ -134,4 +134,4 @@ input[type="text"]:focus { overflow:auto; } - \ No newline at end of file + diff --git a/ecomp-portal-widget-ms/widget-ms/pom.xml b/ecomp-portal-widget-ms/widget-ms/pom.xml index 14820b65..dcab5721 100644 --- a/ecomp-portal-widget-ms/widget-ms/pom.xml +++ b/ecomp-portal-widget-ms/widget-ms/pom.xml @@ -146,20 +146,13 @@ spring-boot-maven-plugin + - com.spotify - docker-maven-plugin - 0.4.11 + org.apache.maven.plugins + maven-deploy-plugin + 2.8 - ${project.artifactId} - ${project.basedir}/src/main/docker - - - / - ${project.build.directory} - ${project.build.finalName}.jar - - + true diff --git a/ecomp-portal-widget-ms/widget-ms/src/main/docker/Dockerfile b/ecomp-portal-widget-ms/widget-ms/src/main/docker/Dockerfile deleted file mode 100644 index 7e25c222..00000000 --- a/ecomp-portal-widget-ms/widget-ms/src/main/docker/Dockerfile +++ /dev/null @@ -1,6 +0,0 @@ -FROM frolvlad/alpine-oraclejdk8:slim -VOLUME /tmp -ADD widget-ms.jar app.jar -RUN sh -c 'touch /app.jar' -ENV JAVA_OPTS="" -ENTRYPOINT [ "sh", "-c", "java $JAVA_OPTS -Djava.security.egd=file:/dev/./urandom -jar /app.jar" ]