pan3793 commented on code in PR #2201:
URL:
https://github.com/apache/incubator-celeborn/pull/2201#discussion_r1439287617
##########
docs/developers/sbt.md:
##########
@@ -276,8 +276,11 @@ Similarly, if your objective involves compiling and
packaging within an intranet
mavenLocal: file://${user.home}/.m2/repository/
private: ${celeborn.sbt.default.artifact.repository-file:///dev/null}
private-central: https://example.com/repository/maven/
+ private-central-http: http://example.com/repository/maven/,
allowInsecureProtocol
```
+If you need to use the http protocol repository, you should add
`allowInsecureProtocol`, otherwise an error will be reported (`insecure HTTP
request is unsupported`), please refer to the [sbt Launcher
Configuration](https://www.scala-sbt.org/1.x/docs/Launcher-Configuration.html).
Review Comment:
```suggestion
`allowInsecureProtocol` is required if you want to use a repository which
only supports HTTP protocol but not HTTPS, otherwise, an error will be raised
(`insecure HTTP request is unsupported`), please refer to the [sbt Launcher
Configuration](https://www.scala-sbt.org/1.x/docs/Launcher-Configuration.html).
```
--
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]