Skip to content

Commit

Permalink
Fix gradle issues after serverlibs introduction
Browse files Browse the repository at this point in the history
  • Loading branch information
bjsvedin committed May 23, 2024
1 parent 2870ee3 commit 2f1995f
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
12 changes: 12 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,16 @@ buildscript {
classpath(serverlibs.deployHelpers)
classpath(serverlibs.proguard)
}
}

allprojects {
group = "com.lightningkite.lightningserver"
repositories {
mavenLocal()
// maven(url = "https://s01.oss.sonatype.org/content/repositories/snapshots/")
maven(url = "https://s01.oss.sonatype.org/content/repositories/releases/")
google()
mavenCentral()

}
}
4 changes: 4 additions & 0 deletions client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ plugins {
`maven-publish`
}

repositories{
maven("https://jitpack.io")
}

kotlin {
targetHierarchy.default()
androidTarget {
Expand Down

0 comments on commit 2f1995f

Please sign in to comment.