Ai
1 Star 0 Fork 2

Lance/web-chat

forked from zhutao/web-chat 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
settings.xml 2.19 KB
一键复制 编辑 原始数据 按行查看 历史
zhutao 提交于 2022-11-20 08:59 +08:00 . maven settings.xml 私服配置
<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<localRepository>D:\java\apache-maven-3.8.6\repo</localRepository>
<pluginGroups></pluginGroups>
<proxies></proxies>
<servers>
<server>
<!--这是server的id(注意不是用户登陆的id),该id与distributionManagement中repository元素的id相匹配。 pom-->
<id>zhutao-repository</id>
<username>admin</username>
<password>zhutao</password>
</server>
</servers>
<mirrors>
<mirror>
<id>aliyun</id>
<mirrorOf>central</mirrorOf>
<name>aliyun nexus</name>
<url>http://maven.aliyun.com/repository/public/</url>
</mirror>
</mirrors>
<profiles>
<profile>
<id>jdk1.8</id>
<activation>
<activeByDefault>true</activeByDefault>
<jdk>1.8</jdk>
</activation>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
</properties>
</profile>
<profile>
<id>necus-company</id>
<repositories>
<repository>
<id>central</id>
<url>http://maven.aliyun.com/repository/public/</url>
<releases><enabled>true</enabled></releases>
<snapshots><enabled>false</enabled></snapshots>
</repository>
<repository>
<id>spring</id>
<url>http://maven.aliyun.com/repository/public/</url>
<releases><enabled>true</enabled></releases>
<snapshots><enabled>false</enabled></snapshots>
</repository>
<repository>
<id>necus-company</id>
<name>zhutao repositories</name>
<url>http://localhost:8800/repository/zhutao-repository/</url>
<releases><enabled>true</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
</repository>
</repositories>
</profile>
</profiles>
<activeProfiles>
<activeProfile>jdk1.8</activeProfile>
<activeProfile>necus-company</activeProfile>
</activeProfiles>
</settings>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/lance521/web-chat.git
git@gitee.com:lance521/web-chat.git
lance521
web-chat
web-chat
master

搜索帮助