2 Replies Latest reply on Apr 20, 2010 7:04 PM by pmuir

    wrong version output to console

    asookazian
      21:45:31,076 INFO  [Version] WELD-000900 1.0.1 (CR1)

      I ran the following script and no hits:

      #!/bin/sh

      LOOK_FOR="Version"
      DIR="/opt/jboss/weld-1.0.1-Final/artifacts/weld"

      for i in `find $DIR -name "*jar"`
      do
        echo "Looking in $i ..."
        jar tvf $i | grep $LOOK_FOR > /dev/null
        if [ $? == 0 ]
        then
          echo "==> Found \"$LOOK_FOR\" in $i"
        fi
      done


      Where is the Version class located?

      Note that the version is wrong (I'm running 1.0.1-final)...