platomix统一配置模块

changyuchun 65302a52d8 Query改造,支持多字段排序 il y a 4 jours
platomix-docker 1a9da56aa8 Merge remote-tracking branch 'origin/master' il y a 6 jours
platomix-gmetry-auth 11b14eb984 Merge remote-tracking branch 'origin/master' il y a 3 mois
platomix-gmetry-common 6b5ea99c9e 低代码和工作流升级 rpc 版本 il y a 7 mois
platomix-gmetry-datasource ecf61b7aa6 创建数据源独立模块 il y a 1 mois
platomix-gmetry-framework 65302a52d8 Query改造,支持多字段排序 il y a 4 jours
platomix-gmetry-message 832a560d77 Merge remote-tracking branch 'origin/master' il y a 1 mois
platomix-gmetry-openfeign d92781e478 OpenFeignProperties AppId il y a 5 mois
platomix-pom 4a8057fcb0 修改代码质量检测规则说明 il y a 1 mois
sql 11b14eb984 Merge remote-tracking branch 'origin/master' il y a 3 mois
.gitignore 004128a41e gitignore il y a 2 ans
README.md 4833c49522 添加版本SQL文件 il y a 2 ans
pom.xml ecf61b7aa6 创建数据源独立模块 il y a 1 mois

README.md

maven的settings.xml文件中添加nexus的账号密码

<server>
	<id>platomix-release</id>
	<username>nexus-develop</username>
    <password>Nexus@develop123</password>
</server>  

模块项目POM.xml,添加以下配置

<repositories>
	<repository>
		<id>alimaven</id>
		<name>aliyun maven</name>
		<url>https://maven.aliyun.com/repository/public/</url>
		<snapshots>
			<enabled>false</enabled>
		</snapshots>
	</repository>
	<repository>
		<id>platomix-release</id>
		<name>NexusReleases</name>
		<url>http://windata.platomix.net/nexus/repository/maven-public/</url>
	</repository>
</repositories>