[jboss-cvs] JBossRemoting ...

Anil Saldhana anil.saldhana at jboss.com
Fri Aug 25 17:08:13 EDT 2006


  User: asaldhana
  Date: 06/08/25 17:08:13

  Added:       JBossRemoting  keygen.sh
  Log:
  JBREM-419:keygen script that works on cygwin/unix
  
  Revision  Changes    Path
  1.1      date: 2006/08/25 21:08:13;  author: asaldhana;  state: Exp;JBossRemoting/keygen.sh
  
  Index: keygen.sh
  ===================================================================
  #Remember to do it on JDK1.4
  #Once the keys are generated in the current directory, you will need to
  #move it to src/etc/org/jboss/remoting/marshall/encryption direction
  #The build takes care of packaging
  
  cygwin=false
  case "`uname`" in
      CYGWIN*)
          cygwin=true
          ;;
  
      Darwin*)
          darwin=true
          ;;
  esac
  CP=output/lib/jboss-remoting.jar:lib/jboss/jboss-common.jar
  # For Cygwin, switch paths to Windows format before running java
  if $cygwin; then
      CP=`cygpath --path --windows "$CP"`
  fi
  java -cp $CP org.jboss.remoting.marshal.encryption.KeyGeneratorUtil
  
  
  



More information about the jboss-cvs-commits mailing list