Hey there, we recently noticed that when we deploy our Java app and enter our credentials that the password is visible in the console.
We use the (official?) Gradle plugin<https://github.com/GoogleCloudPlatform/gradle-appengine-plugin>to build and deploy. When we run *appcfg.sh* manually it hides the password. There is already an issue<https://github.com/GoogleCloudPlatform/gradle-appengine-plugin/issues/25>for this, but the author attributes the problem to "OSX and/or JDK". Then I dove into the code and found that it defers to AppCfg.java<https://code.google.com/p/googleappengine/source/browse/trunk/java/src/main/com/google/appengine/tools/admin/AppCfg.java?r=194#225>which then reads the credentials by invoking a LoginReader<https://code.google.com/p/googleappengine/source/browse/trunk/java/src/main/com/google/appengine/tools/admin/LoginReaderFactory.java?r=194#61>. The odd thing is that this reader seems to use the same method for reading email and password. hm ... ? I'm confused. How can we hide the password input on deployment again? PS: We use OSX 10.9, Gradle 1.12, JDK 1.7.0_45 and SDK 1.9.4. PPS: We don't want to use OAuth. Regards Stephan -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. For more options, visit https://groups.google.com/d/optout.
