Skip to content
This repository was archived by the owner on Nov 23, 2021. It is now read-only.

Commit 0b78870

Browse files
committed
Make aliyun mirror be the first choice
Signed-off-by: johnniang <johnniang@fastmail.com>
1 parent 9085e8c commit 0b78870

3 files changed

Lines changed: 9 additions & 5 deletions

File tree

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,3 @@ For more information about how to use the KubeSphere DevOps system, you can refe
1212
- [Create a Pipeline Using Graphical Editing Panels](https://kubesphere.io/docs/devops-user-guide/how-to-use/create-a-pipeline-using-graphical-editing-panel/)
1313
- [Build and Deploy a Maven Project](https://kubesphere.io/docs/devops-user-guide/examples/a-maven-project/)
1414
- [Source to Image: Publish an App without a Dockerfile](https://kubesphere.io/docs/project-user-guide/image-builder/source-to-image/)
15-

README_zh.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,3 @@ KubeSphere 基于 Jenkins 提供的 DevOps 系统可以实现[多种功能](http
1212
- [使用图形编辑面板创建流水线](https://kubesphere.io/zh/docs/devops-user-guide/how-to-use/create-a-pipeline-using-graphical-editing-panel/)
1313
- [构建和部署 Maven 工程](https://kubesphere.io/zh/docs/devops-user-guide/examples/a-maven-project/)
1414
- [Source to Image:无需 Dockerfile 发布应用](https://kubesphere.io/zh/docs/project-user-guide/image-builder/source-to-image/)
15-

configuration/settings.xml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<profile>
1212
<id>jenkins</id>
1313
<activation>
14-
<activeByDefault>true</activeByDefault> <!-- change this to false, if you don't like to have it on per default -->
14+
<activeByDefault>false</activeByDefault> <!-- change this to false, if you don't like to have it on per default -->
1515
</activation>
1616
<repositories>
1717
<repository>
@@ -29,11 +29,17 @@
2929
<profile>
3030
<id>sonar</id>
3131
<activation>
32-
<activeByDefault>true</activeByDefault>
33-
</activation>
32+
<activeByDefault>true</activeByDefault>
33+
</activation>
3434
</profile>
3535
</profiles>
3636
<mirrors>
37+
<mirror>
38+
<id>aliyunmaven</id>
39+
<mirrorOf>central</mirrorOf>
40+
<name>aliyun maven</name>
41+
<url>https://maven.aliyun.com/repository/central</url>
42+
</mirror>
3743
<mirror>
3844
<id>repo.jenkins-ci.org</id>
3945
<url>https://repo.jenkins-ci.org/public/</url>

0 commit comments

Comments
 (0)