上传到mvn私服

This commit is contained in:
Github_lizhw 2024-11-10 11:34:57 +08:00
parent 210fd924c8
commit e3134d9713
3 changed files with 16 additions and 1 deletions

13
pom.xml
View File

@ -66,6 +66,14 @@
</properties> </properties>
<profiles> <profiles>
<profile>
<id>rdc</id>
<properties>
<!-- 环境标识,需要与配置文件的名称相对应 -->
<profiles.active>local</profiles.active>
<logging.level>info</logging.level>
</properties>
</profile>
<profile> <profile>
<id>local</id> <id>local</id>
<properties> <properties>
@ -533,6 +541,11 @@
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
</plugin>
</plugins> </plugins>
<resources> <resources>
<resource> <resource>

View File

@ -10,6 +10,8 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>ruoyi-api-system</artifactId> <artifactId>ruoyi-api-system</artifactId>
<version>${revision}-SNAPSHOT</version>
<packaging>jar</packaging>
<description> <description>
ruoyi-api-system系统接口模块 TODO 记得改名 ruoyi-api-system-saas ruoyi-api-system系统接口模块 TODO 记得改名 ruoyi-api-system-saas

View File

@ -15,7 +15,7 @@ public class SaSsoServerApplication {
System.out.println(); System.out.println();
System.out.println("---------------------- Sa-Token SSO 统一认证中心启动成功 ----------------------"); System.out.println("---------------------- Sa-Token SSO 统一认证中心启动成功 ----------------------");
System.out.println("配置信息:" + SaSsoManager.getServerConfig()); System.out.println("配置信息:" + SaSsoManager.getServerConfig());
System.out.println("统一认证登录地址http://sa-sso-server.com:9000/sso/auth"); System.out.println("统一认证登录地址http://sa-sso-server.com:19000/sso/auth");
System.out.println("测试前需要根据官网文档修改hosts文件测试账号密码sa / 123456"); System.out.println("测试前需要根据官网文档修改hosts文件测试账号密码sa / 123456");
System.out.println(); System.out.println();
} }