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