mirror of
https://gitee.com/mateos/mateclaw.git
synced 2026-09-13 11:13:43 +08:00
- mateclaw-server/settings.xml: Maven mirror routes requests through Aliyun so dependency:go-offline no longer hangs in restricted networks - Dockerfile: COPY settings.xml into /root/.m2/ before any mvn command - docker-compose.yml: fix port mapping 18080->18088 (app listens on 18088) - docker-compose.yml: remove legacy schema.sql/data.sql MySQL mounts; Flyway manages schema creation from V1 baseline on startup
26 lines
944 B
XML
26 lines
944 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
Maven mirror settings for Docker build.
|
|
Routes all repository requests through Aliyun Maven mirror to avoid
|
|
network timeouts when building inside containers in China.
|
|
-->
|
|
<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">
|
|
<mirrors>
|
|
<mirror>
|
|
<id>aliyun-public</id>
|
|
<mirrorOf>central</mirrorOf>
|
|
<name>Aliyun Public Repository</name>
|
|
<url>https://maven.aliyun.com/repository/public</url>
|
|
</mirror>
|
|
<mirror>
|
|
<id>aliyun-spring</id>
|
|
<mirrorOf>spring-milestones,spring-snapshots</mirrorOf>
|
|
<name>Aliyun Spring Repository</name>
|
|
<url>https://maven.aliyun.com/repository/spring</url>
|
|
</mirror>
|
|
</mirrors>
|
|
</settings>
|