"
linux系统,bugzilla 4.21
按照官网配置SMTP;
在..\data\params设置如下参数:
maintainer : swaiwai@qq.com
mail_delivery_method : SMTP
mailfrom : swaiwai@qq.com
sendmailnow: on
smtpserver : smtp.qq.com
smtp_username: swaiwai@qq.com
smtp_password : **********
提交bug时,出现下面错误提示,并且BUG提交不成功,求高手,求帮助。。。
Bugzilla was unable to make any match at all for one or more of the names and/or email addresses you entered on the previous page.
Please go back and try other names or email addresses.
Assignee: |
380319096@qq.com
did not match anything
|
"
不行的。我试过。
如果楼主实在是想要这样,可以自己写maven插件实现
######<div class=""ref"">不行的。我试过。
如果楼主实在是想要这样,可以自己写maven插件实现
看来只能 自己写maven插件实现了######<targetPath>config</targetPath>######
搞定了,解决方法如下:
把src/main/resource/config目录,移动到src/main/config下
然后,pom.xml里面配置
<resources> <resource> <directory>${project.basedir}/src/main/resources</directory> </resource> <resource> <directory>${project.basedir}/src/main/config/${env}</directory> </resource> </resources>
另外,如果有用到assembly,则assembly.xml里面也要做配置
<fileSet> <directory>src/main/resources</directory> <outputDirectory>conf</outputDirectory> </fileSet> <fileSet> <directory>src/main/config/${env}</directory> <outputDirectory>conf</outputDirectory> </fileSet>
"
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。