产品插件
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.

28 lines
806 B

3 years ago
## epmet-plugins
党群e事通插件/外挂服务模块后端代码库
3 years ago
### 新建插件建议:
> 建议在epmet-plugins-module模块下新建插件模块
>> 建议新模块名称以'pli-'为前缀
>>> 建议新模块的context-path以'/pli/'为前缀
### 私服依赖下载
> 本地maven的settings.xml文件,在<servers>标签下新建子元素,在account与password处,填入私服的账号密码
3 years ago
```xml
<server>
<id>epmet</id>
<username>${account}</username>
<password>${password}</password>
</server>
```
> 本地maven的settings.xml文件,在<mirrors>标签下新建子元素
```xml
<mirror>
<id>epmet</id>
<mirrorOf>epmet</mirrorOf>
<name>maven-releases</name>
<url>https://nexus.elinkservice.cn/repository/maven-releases/</url>
</mirror>
```