This is an automated email from the ASF dual-hosted git repository.

hepin pushed a commit to branch main
in repository 
https://gitbox.apache.org/repos/asf/incubator-pekko-connectors-kafka.git


The following commit(s) were added to refs/heads/main by this push:
     new b859ee47 Use ApacheMavenSnapshotsRepo constant (#64)
b859ee47 is described below

commit b859ee4723149ed59c71e868d5f1018bb5a4c8a4
Author: Matthew de Detrich <[email protected]>
AuthorDate: Sat May 6 11:20:27 2023 +0200

    Use ApacheMavenSnapshotsRepo constant (#64)
---
 docs/src/main/paradox/snapshots.md | 9 +++++++--
 project/ResolverSettings.scala     | 2 +-
 project/build.properties           | 2 +-
 3 files changed, 9 insertions(+), 4 deletions(-)

diff --git a/docs/src/main/paradox/snapshots.md 
b/docs/src/main/paradox/snapshots.md
index 35feacf9..499eaad4 100644
--- a/docs/src/main/paradox/snapshots.md
+++ b/docs/src/main/paradox/snapshots.md
@@ -32,11 +32,16 @@ Maven
     </project>
     ```
 
-sbt
+sbt (1.9.0 or later)
 :   ```scala
-    resolvers += "Apache Snapshots" at 
"https://repository.apache.org/content/groups/snapshots";
+    resolvers += Resolver.ApacheMavenSnapshotsRepo
     ```
 
+sbt (earlier than 1.9.0)
+:   ```scala
+resolvers += "Apache Nexus 
Snapshots".at("https://repository.apache.org/content/repositories/snapshots/";)
+```
+
 Gradle
 :   ```gradle
     repositories {
diff --git a/project/ResolverSettings.scala b/project/ResolverSettings.scala
index 10db512c..eea685e1 100644
--- a/project/ResolverSettings.scala
+++ b/project/ResolverSettings.scala
@@ -16,5 +16,5 @@ object ResolverSettings {
   lazy val projectResolvers = Seq(
     // for Jupiter interface (JUnit 5)
     Resolver.jcenterRepo,
-    "Apache Snapshot Repo" at 
"https://repository.apache.org/content/groups/snapshots/";)
+    Resolver.ApacheMavenSnapshotsRepo)
 }
diff --git a/project/build.properties b/project/build.properties
index 46e43a97..d6de1a0c 100644
--- a/project/build.properties
+++ b/project/build.properties
@@ -1 +1 @@
-sbt.version=1.8.2
+sbt.version=1.9.0-RC1


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to