Skip to content

Commit

Permalink
Update environment variables and downgrade packagesearchApiModels
Browse files Browse the repository at this point in the history
Changes have been made to the build.gradle.kts file to update the environment variables for username and password. The version of the packagesearchApiModels dependency has also been downgraded from 3.1.0 to 3.0.0 in packagesearch.versions.toml. In addition,
  • Loading branch information
fscarponi committed May 21, 2024
1 parent 265e4bc commit 3030641
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ allprojects {
maven("https://cache-redirector.jetbrains.com/intellij-dependencies")
maven("https://packages.jetbrains.team/maven/p/ij/intellij-sdk-nightly") {
credentials {
username = getenv("MAVEN_SPACE_INTELLIJ_USERNAME")
username = getenv("MAVEN_SPACE_USERNAME")
?: project.extra.getStringOrNull("space.intellij.username")
password = getenv("MAVEN_SPACE_INTELLIJ_PASSWORD")
password = getenv("MAVEN_SPACE_PASSWORD")
?: project.extra.getStringOrNull("space.intellij.password")
}
}
Expand Down
2 changes: 1 addition & 1 deletion packagesearch.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ kotlinxSerialization = "1.6.0"
ktor = "2.3.5"
logback = "1.4.11"
nitrite = "4.2.2"
packagesearchApiModels = "3.1.0"
packagesearchApiModels = "3.0.0"

[libraries]
assertk = { module = "com.willowtreeapps.assertk:assertk-jvm", version.ref = "assertk" }
Expand Down
1 change: 1 addition & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ dependencyResolutionManagement {
}

include(
":nitrite",
":plugin",
":plugin:core",
":plugin:utils",
Expand Down

0 comments on commit 3030641

Please sign in to comment.