Add plugin configuration to skip deploy 63/5763/3
authorChristopher Lott (cl778h) <clott@research.att.com>
Wed, 12 Jul 2017 18:28:05 +0000 (14:28 -0400)
committerChristopher Lott (cl778h) <clott@research.att.com>
Wed, 12 Jul 2017 19:19:34 +0000 (15:19 -0400)
Change-Id: I84ff02d2336a802b73f98be7318456095f0de276
Signed-off-by: Christopher Lott (cl778h) <clott@research.att.com>
deliveries/os_build_febe.sh
ecomp-portal-BE-common-test/pom.xml
ecomp-portal-BE-common/pom.xml
ecomp-portal-BE-os/pom.xml
ecomp-portal-FE-os/pom.xml

index fa66f26..64e166c 100755 (executable)
@@ -2,8 +2,8 @@
 
 source $(dirname $0)/os_settings.sh
 
-export MVN="${MVN} -gs ${GLOBAL_SETTINGS_FILE} -s ${SETTINGS_FILE}"
-#export MVN="mvn"
+# Use -B for batch operation to skip download progress output
+export MVN="${MVN} -gs ${GLOBAL_SETTINGS_FILE} -s ${SETTINGS_FILE} -B"
 
 CURRENTDIR="$(pwd)"
 
@@ -56,7 +56,7 @@ cd $PROJECTDIR/ecomp-portal-FE-os/
 
 ${MVN} install
 
-mv target/epsdk-app-os-1.1.0 target/ep-sdk-app
+mv target/epsdk-app-os target/ep-sdk-app
 
 # now install DBC app
 cd $SOURCEDIR
@@ -95,4 +95,4 @@ fi
 
 EXEC_CMD="docker build -t ${IMGNAME} ${PROXY_ARGS} --build-arg VERSION=${VERSION} --build-arg PORTAL_SDK_DIR=${PORTAL_SDK_DIR}  --build-arg SDK_DIR=${SDK_DIR} --build-arg FE_DIR=${FE_DIR}  --build-arg PORTAL_DBC_DIR=${PORTAL_DBC_DIR} -f ./os_Dockerfile ."
 echo $EXEC_CMD
-$EXEC_CMD
\ No newline at end of file
+$EXEC_CMD
index 93e153f..8ef820c 100644 (file)
                                        </overlays>
                                </configuration>
                        </plugin>
+                       <!-- No deployment step for this project -->
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-deploy-plugin</artifactId>
+                               <version>2.8</version>
+                               <configuration>
+                                       <skip>true</skip>
+                               </configuration>
+                       </plugin>
                        <!--
                        <plugin>
                            <groupId>org.codehaus.mojo</groupId>
index bf5f9f1..021310d 100644 (file)
                                </configuration>
                        </plugin>
                        
+                       <!-- No deployment step for this project -->
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-deploy-plugin</artifactId>
+                               <version>2.8</version>
+                               <configuration>
+                                       <skip>true</skip>
+                               </configuration>
+                       </plugin>
+
                        <!--     
                        <plugin>
                            <groupId>org.codehaus.mojo</groupId>
index 4592749..1e64f7c 100644 (file)
                                </configuration>
                        </plugin>
 
+                       <!-- No deployment step for this project -->
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-deploy-plugin</artifactId>
+                               <version>2.8</version>
+                               <configuration>
+                                       <skip>true</skip>
+                               </configuration>
+                       </plugin>
 
                        <plugin>
                                <artifactId>maven-resources-plugin</artifactId>
                                        </execution>
                                </executions>
                        </plugin>
-                       <!-- 
-                       <plugin>
-                           <groupId>org.codehaus.mojo</groupId>
-                           <artifactId>license-maven-plugin</artifactId>
-                           <version>1.10</version>
-                           <configuration>
-                             <encoding>UTF-8</encoding>
-                               <licenseName>my_license</licenseName>
-                               <licenseResolver>${project.baseUri}/license</licenseResolver>
-                               <inceptionYear>2017</inceptionYear>
-                               <organizationName>AT&amp;T Intellectual Property</organizationName>
-                               <projectName>ECOMP Portal</projectName> 
-                               <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage> 
-                               <processStartTag>================================================================================</processStartTag>
-                               <sectionDelimiter>================================================================================</sectionDelimiter>
-                               <processEndTag>================================================================================</processEndTag> 
-                               <roots>
-                                       <root>src/main</root>
-                                       <root>src/test</root>
-                               </roots>
-                               <excludes>
-                                       <exclude>*.png</exclude>
-                                       <exclude>*.drl</exclude>
-                                       <exclude>*.gif</exclude>
-                                       <exclude>*.jpeg</exclude>
-                                       <exclude>*.jpg</exclude>
-                                       <exclude>*.bmp</exclude>
-                                       <exclude>*.ico</exclude>
-                                       <exclude>*.svg</exclude>
-                               </excludes>
-                           </configuration>
-                           <executions>
-                               <execution>
-                                   <id>first</id>
-                                   <goals>
-                                       <goal>update-file-header</goal>
-                                   </goals>
-                                   <phase>process-sources</phase>
-                               </execution>
-                           </executions>
-                       </plugin>
-                        -->
+                       <!-- <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> 
+                               <version>1.10</version> <configuration> <encoding>UTF-8</encoding> <licenseName>my_license</licenseName> 
+                               <licenseResolver>${project.baseUri}/license</licenseResolver> <inceptionYear>2017</inceptionYear> 
+                               <organizationName>AT&amp;T Intellectual Property</organizationName> <projectName>ECOMP 
+                               Portal</projectName> <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage> 
+                               <processStartTag>================================================================================</processStartTag> 
+                               <sectionDelimiter>================================================================================</sectionDelimiter> 
+                               <processEndTag>================================================================================</processEndTag> 
+                               <roots> <root>src/main</root> <root>src/test</root> </roots> <excludes> <exclude>*.png</exclude> 
+                               <exclude>*.drl</exclude> <exclude>*.gif</exclude> <exclude>*.jpeg</exclude> 
+                               <exclude>*.jpg</exclude> <exclude>*.bmp</exclude> <exclude>*.ico</exclude> 
+                               <exclude>*.svg</exclude> </excludes> </configuration> <executions> <execution> 
+                               <id>first</id> <goals> <goal>update-file-header</goal> </goals> <phase>process-sources</phase> 
+                               </execution> </executions> </plugin> -->
                </plugins>
 
                <testResources>
index 011a924..e54b518 100644 (file)
                                        </execution>
 
                                </executions>
+                       </plugin>
+                       <!-- No deployment step for this project -->
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-deploy-plugin</artifactId>
+                               <version>2.8</version>
+                               <configuration>
+                                       <skip>true</skip>
+                               </configuration>
                        </plugin>
                         <!--    
                        <plugin>