Skip to content

Commit

Permalink
Add custom maven target for unity (#2725)
Browse files Browse the repository at this point in the history
  • Loading branch information
romtsn committed May 22, 2023
1 parent 1707044 commit 46b1782
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,16 @@ subprojects {
assignAarTypes()
}

// this is needed for sentry-unity to consume our artifacts locally as proper maven publication
configure<PublishingExtension> {
repositories {
maven {
name = "unityMaven"
url = file("${rootProject.buildDir}/unityMaven").toURI()
}
}
}

// maven central info go to:
// ~/.gradle/gradle.properties

Expand Down

0 comments on commit 46b1782

Please sign in to comment.