Skip to content

Commit

Permalink
SONARPHP-1522 Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
GabinL21 committed Nov 4, 2024
1 parent 6fefb84 commit d008b7a
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions build-logic/src/main/kotlin/org.sonarsource.php.rule-api.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
val ruleApiVersion = "2.9.0.4061"

repositories {
maven {
url = project.uri("https://repox.jfrog.io/repox/sonarsource-private-releases")
authentication {
credentials {
val artifactoryUsername: String? by project
val artifactoryPassword: String? by project
username = artifactoryUsername
password = artifactoryPassword
}
}
maven {
url = project.uri("https://repox.jfrog.io/repox/sonarsource-private-releases")
authentication {
credentials {
val artifactoryUsername: String? by project
val artifactoryPassword: String? by project
username = artifactoryUsername
password = artifactoryPassword
}
}
mavenCentral()
}
mavenCentral()
}

val ruleApi: Configuration = configurations.create("ruleApi")
Expand Down Expand Up @@ -49,6 +49,6 @@ tasks.register<JavaExec>("ruleApiGenerateRule") {
add("-branch")
add(branch.get())
}
}
},
)
}

0 comments on commit d008b7a

Please sign in to comment.