Skip deployment of widget-ms jar 65/8865/1
authorChristopher Lott (cl778h) <clott@research.att.com>
Sat, 26 Aug 2017 10:45:20 +0000 (06:45 -0400)
committerChristopher Lott (cl778h) <clott@research.att.com>
Sat, 26 Aug 2017 10:46:49 +0000 (06:46 -0400)
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) <clott@research.att.com>
ecomp-portal-FE-common/client/app/views/dashboard/dashboard-widget.controller.less
ecomp-portal-widget-ms/widget-ms/pom.xml
ecomp-portal-widget-ms/widget-ms/src/main/docker/Dockerfile [deleted file]

index a9c3d80..b4cb010 100644 (file)
@@ -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
+  
index 14820b6..dcab572 100644 (file)
                                <artifactId>spring-boot-maven-plugin</artifactId>
                        </plugin>
 
+                       <!-- No deployment step for this project -->
                        <plugin>
-                               <groupId>com.spotify</groupId>
-                               <artifactId>docker-maven-plugin</artifactId>
-                               <version>0.4.11</version>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-deploy-plugin</artifactId>
+                               <version>2.8</version>
                                <configuration>
-                                       <imageName>${project.artifactId}</imageName>
-                                       <dockerDirectory>${project.basedir}/src/main/docker</dockerDirectory>
-                                       <resources>
-                                               <resource>
-                                                       <targetPath>/</targetPath>
-                                                       <directory>${project.build.directory}</directory>
-                                                       <include>${project.build.finalName}.jar</include>
-                                               </resource>
-                                       </resources>
+                                       <skip>true</skip>
                                </configuration>
                        </plugin>
 
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 (file)
index 7e25c22..0000000
+++ /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" ]