fix: formatting
parent
903dd1e57f
commit
44530b038e
|
|
@ -10,9 +10,7 @@ plugins {
|
|||
|
||||
repositories {
|
||||
// Use Maven Central for resolving dependencies.
|
||||
maven {
|
||||
url = uri("https://mvn.demo.rattermeyer.de/releases")
|
||||
}
|
||||
maven { url = uri("https://mvn.demo.rattermeyer.de/releases") }
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
|
|
|||
|
|
@ -9,11 +9,7 @@ plugins {
|
|||
id("io.spring.dependency-management") version "1.1.4"
|
||||
}
|
||||
|
||||
repositories {
|
||||
maven {
|
||||
url = uri("https://mvn.demo.rattermeyer.de")
|
||||
}
|
||||
}
|
||||
repositories { maven { url = uri("https://mvn.demo.rattermeyer.de") } }
|
||||
|
||||
publishing {
|
||||
repositories {
|
||||
|
|
@ -22,9 +18,7 @@ publishing {
|
|||
url = uri("https://mvn.demo.rattermeyer.de/releases")
|
||||
isAllowInsecureProtocol = true
|
||||
credentials(PasswordCredentials::class)
|
||||
authentication {
|
||||
create<BasicAuthentication>("basic")
|
||||
}
|
||||
authentication { create<BasicAuthentication>("basic") }
|
||||
}
|
||||
}
|
||||
publications {
|
||||
|
|
@ -37,7 +31,7 @@ publishing {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
dependencies {
|
||||
implementation("org.springframework.boot:spring-boot-starter")
|
||||
api(project(":list")) }
|
||||
api(project(":list"))
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue