我正在使用maven-postman-plugin在构建项目后向我的用户发送电子邮件。 它工作正常,但我想输入我的电子邮件密码加密。
我的配置:
<plugin>
<groupId>ch.fortysix</groupId>
<artifactId>maven-postman-plugin</artifactId>
<executions>
<execution>
<id>send a 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>
我想输入加密密码,如: {34dsff#W $}不是123456
有什么办法吗?
谢谢