Home | History | Annotate | Download | only in slf4j
      1 VER=$1
      2 echo "Will use version '${VER}'"
      3 echo "Changing pom.xml files"
      4 find . -name "pom.xml" |xargs perl version.pl ${VER}
      5 echo "Changing Java files"
      6 find . -name "StaticLoggerBinder.java" |xargs perl binderVersion.pl ${VER}
      7 
      8