/
dzhits_gv
/
FileSharingBot
Обзор
Документация
Войти
/
dzhits_gv
/
FileSharingBot
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
settings.xml
74 строки
3 KB
dzh
preparing for the local deployment of the project in Docker, code refactoring (isolating microservices from each other, combining common modules)
15 фев 2025, 23:42
15 фев 2025, 23:42
ab693ea
Код
Авторство
О чём код?
<?xml version="1.0" encoding="UTF-8"?> <!--конфиг Maven с репозиториями, откуда будут скачиваться зависимости для сборки микросервисов--> <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"> <profiles> <profile> <id>central-maven</id> <repositories> <repository> <id>central</id> <name>Maven Central Repository</name> <url>https://repo.maven.apache.org/maven2/</url> </repository> </repositories> </profile> <profile> <!-- Source: https://www.deps.co/guides/public-maven-repositories/ --> <id>sonatype-mirror</id> <repositories> <repository> <id>sonatype-repository</id> <name>Sonatype Nexus Repository</name> <url>https://oss.sonatype.org/content/repositories/releases/</url> </repository> </repositories> </profile> <profile> <!-- Source: https://repo.maven.apache.org/maven2/.meta/repository-metadata.xml --> <id>google-central</id> <repositories> <repository> <id>google-maven-central</id> <name>Google Maven Central</name> <url>https://maven-central.storage-download.googleapis.com/maven2/</url> </repository> </repositories> </profile> <profile> <!-- Source: https://repo.maven.apache.org/maven2/.meta/repository-metadata.xml --> <id>google-central-eu</id> <repositories> <repository> <id>google-maven-central-eu</id> <name>Google Maven Central EU</name> <url>https://maven-central-eu.storage-download.googleapis.com/maven2/</url> </repository> </repositories> </profile> <profile> <!-- Source: https://repo.maven.apache.org/maven2/.meta/repository-metadata.xml --> <id>google-central-ap</id> <repositories> <repository> <id>google-maven-central-ap</id> <name>Google Maven Central AP</name> <url>https://maven-central-asia.storage-download.googleapis.com/maven2/</url> </repository> </repositories> </profile> </profiles> <activeProfiles> <!--при необходимости изменить репозиторий закомментировать активный и раскомментировать необходимый--> <activeProfile>central-maven</activeProfile> <!--<activeProfile>sonatype-mirror</activeProfile>--> <!--<activeProfile>google-central</activeProfile>--> <!--<activeProfile>google-central-eu</activeProfile>--> <!--<activeProfile>google-central-ap</activeProfile>--> </activeProfiles> </settings>