Skip to content

Instantly share code, notes, and snippets.

@alllex
Created October 3, 2023 12:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alllex/1413c7dfb4ca24c81e0a315f85d90ef6 to your computer and use it in GitHub Desktop.
Save alllex/1413c7dfb4ca24c81e0a315f85d90ef6 to your computer and use it in GitHub Desktop.
Maven Central Snapshot repository in Gradle
repositories {
// Maven Central Snapshots
maven {
url = uri("https://s01.oss.sonatype.org/content/repositories/snapshots/")
content {
includeGroup("me.alllex.some.group")
}
}
mavenCentral()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment