Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

            find . -name "*pom.xml" | xargs sed -i xargs sed 's|1.4.1-SNAPSHOT|1.4.2-SNAPSHOT|g'

...

            find . -name "*pom.xml" | xargs grep -w '1.4.2-SNAPSHOT'      

            # Update the CCSDK parent artifact "org.onap.ccsdk.parent" version to >=  # Replace '1.1.3' with 1.2.2 , it should like the below oneusing the below command, otherwise we can use vi or other text editor to the same

            # Replace ' find . -name pom.xml | xargs sed -i 's|1.1.3' with |1.2.2|g'

            vi #vi ./feature-repo-parent/pom.xml
            vi #vi ./binding-parent/pom.xml
            vi #vi ./bundle-parent/pom.xml
            vi #vi ./pom.xml
            vi #vi ./single-feature-parent/pom.xml
            vi #vi ./odlparent-lite/pom.xml

            # Updated the CCSDK parent artifact "org.onap.ccsdk.parent" version should like the below one

            # This is to use the CCSDK with ODL Fluorine SR2 release


                                                  <parent>
                                                  <groupId>org.onap.ccsdk.parent</groupId>
                                                  <artifactId>odlparent-lite</artifactId>
                                                  <version>1.2.2</version>
                                                 <relativePath />
                                                 </parent>

         

          #  # Now, build the parent project. It would sometime and we should wait for this one to get completed.

...