jacques-n commented on a change in pull request #2641:
URL: https://github.com/apache/calcite/pull/2641#discussion_r767981943
##########
File path: build.gradle.kts
##########
@@ -806,6 +806,18 @@ allprojects {
// Do not publish "root" project. Java plugin is applied here
for DSL purposes only
return@configure
}
+
+ repositories {
+ maven {
+ name = "ApacheSnapshot" // optional target repository name
+ url =
uri("https://repository.apache.org/content/repositories/snapshots")
+ credentials {
+ username = (project.properties["nexusSnapshotUser"] ?:
"").toString()
+ password =
(project.properties["nexusSnapshotPassword"] ?: "").toString()
+ }
+ }
+ }
Review comment:
Can you please answer my questions:
Where is this defined in the build files? What are the username and password
property names?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]