Merge branch 'refs/heads/dev-mir-stash' into feature/MIR-6740-nexus

This commit is contained in:
rybakoff888ilia@gmail.com 2024-07-09 18:05:15 +03:00
commit 2ed96dbc55
4 changed files with 10 additions and 4 deletions

View File

@ -7,8 +7,7 @@ plugins {
// The kotlin-dsl plugin requires a repository to be declared
repositories {
mavenCentral()
google()
maven ("https://nexus.mir/repository/maven-proxy-group/")
}
dependencies {

View File

@ -0,0 +1,7 @@
pluginManagement {
repositories {
maven {
url = uri("https://nexus.mir/repository/maven-proxy-group/")
}
}
}

View File

@ -19,7 +19,7 @@ abstract class ApiGeneratorPlugin : Plugin<Project> {
with(target) {
repositories {
maven {
url = uri("https://maven.dev.touchin.ru")
url = uri("https://nexus.mir/repository/maven-proxy-group/")
metadataSources {
artifact()
}

View File

@ -16,7 +16,7 @@ class SwaggerApiGeneratorAndroidPlugin : Plugin<Project> {
const val TI_GENERATOR_CONFIG = "TIKotlin-swagger-codegen"
const val TI_GENERATOR_VERSION = "1.0.1"
const val GENERATOR_EXT_NAME = "swaggerApiGenerator"
const val MAVEN_URL = "https://maven.dev.touchin.ru"
const val MAVEN_URL = "https://nexus.mir/repository/maven-proxy-group/"
}
override fun apply(target: Project) {