Compare commits

..

3 Commits

Author SHA1 Message Date
rybakoff888ilia@gmail.com 2ed96dbc55 Merge branch 'refs/heads/dev-mir-stash' into feature/MIR-6740-nexus 2024-07-09 18:05:15 +03:00
rybakoff888ilia@gmail.com 70928797a8 fix 2024-06-27 01:06:21 +03:00
rybakoff888ilia@gmail.com a0d8946530 change repos to nspk 2024-05-13 18:18:24 +03:00
4 changed files with 10 additions and 4 deletions
+1 -2
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 {
+7
View File
@@ -0,0 +1,7 @@
pluginManagement {
repositories {
maven {
url = uri("https://nexus.mir/repository/maven-proxy-group/")
}
}
}
@@ -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()
}
@@ -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) {