You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
2 years ago | |
---|---|---|
epmet-cloud-generator | 3 years ago | |
epmet-plugins-common | 3 years ago | |
epmet-plugins-module | 2 years ago | |
.gitignore | 3 years ago | |
README.md | 3 years ago | |
pom.xml | 3 years ago | |
版权声明.txt | 3 years ago |
README.md
epmet-plugins
代码仓库描述:党群e事通插件/外挂服务模块后端代码库
代码库分支操作说明
开发
- 从master分支上,创建新的分支,分支名一般以dev_为前缀。e.g. dev_example(以此为例进行说明)
开发环境部署
- 将dev_example分支的提交合并到develop分支上
测试环境部署
- 将dev_example分支的提交合并到test分支上
生产环境部署
- 将dev_example分支的提交合并到master分支上
新建插件建议:
建议在epmet-plugins-module模块下新建插件模块
建议新模块名称以'pli-'为前缀
建议新模块的context-path以'/pli/'为前缀
私服依赖下载
本地maven的settings.xml文件,在<servers>标签下新建子元素,在account与password处,填入私服的账号密码
<server>
<id>epmet</id>
<username>${account}</username>
<password>${password}</password>
</server>
本地maven的settings.xml文件,在<mirrors>标签下新建子元素
<mirror>
<id>epmet</id>
<mirrorOf>epmet</mirrorOf>
<name>maven-releases</name>
<url>https://nexus.elinkservice.cn/repository/maven-releases/</url>
</mirror>