Skip to content
This repository has been archived by the owner on Apr 18, 2024. It is now read-only.

Commit

Permalink
chore: akka repository configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
aludwiko committed Jul 31, 2023
1 parent a06ab47 commit b48ba65
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main/g8/build.gradle
Expand Up @@ -5,6 +5,9 @@ apply plugin: 'application'
repositories {
mavenCentral()
mavenLocal()
maven {
url "https://repo.akka.io/maven"
}
}

def versions = [
Expand Down
2 changes: 2 additions & 0 deletions src/main/g8/build.sbt
@@ -1,6 +1,8 @@
val akkaHttpVersion = "$akka_http_version$"
val akkaVersion = "$akka_version$"

resolvers += "Akka library repository".at("https://repo.akka.io/maven")

lazy val root = (project in file(".")).
settings(
inThisBuild(List(
Expand Down
8 changes: 8 additions & 0 deletions src/main/g8/pom.xml
Expand Up @@ -13,6 +13,14 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<repositories>
<repository>
<id>akka-repository</id>
<name>Akka library repository</name>
<url>https://repo.akka.io/maven</url>
</repository>
</repositories>

<dependencyManagement>
<dependencies>
<dependency>
Expand Down

0 comments on commit b48ba65

Please sign in to comment.