java - How to encrypt password in pom.xml -
i'm using maven-postman-plugin sending email users after build project . , works fine want enter email password encrypted .
my config :
<plugin> <groupid>ch.fortysix</groupid> <artifactid>maven-postman-plugin</artifactid> <executions> <execution> <id>send mail</id> <phase>install</phase> <goals> <goal>send-mail</goal> </goals> <inherited>false</inherited> <configuration> <from>me</from> <subject>emailsubject</subject> <failonerror>false</failonerror> <mailuser>mailuser</mailuser> <mailpassword>123456</mailpassword> <mailhost>mail.navaco.ir</mailhost> <receivers> <receiver>m.hoseinnejad@navaco.ir</receiver> </receivers> </configuration> </execution> </executions> </plugin> i want enter password encrypted : {34dsff#w$} not 123456
is there way ?
thanks
Comments
Post a Comment