Marcus Cvjeticanin
03/13/2023, 8:52 PMorg.myorg.sdk.http
And then I have another project that have:
org.myorg.api
Could there be some conflict if I import that first one as implementation("org.myorg.sdk:http:0.1.0")
I believe there might be something like that since when I implement it, I can't import it since it probably thinks it's in the same project but on a different path?
I get the error: "Unresolved reference: sdk"
How can fix this?Kirill Grouchnikov
03/13/2023, 9:04 PMimplementation project(':sdk:http')
sdk:http
to local Maven and expect your second project to get it from local Maven, maybe?Marcus Cvjeticanin
03/13/2023, 9:06 PMKirill Grouchnikov
03/13/2023, 9:06 PMMarcus Cvjeticanin
03/13/2023, 9:06 PMKirill Grouchnikov
03/13/2023, 9:08 PM_maven_("<https://oss.sonatype.org/content/repositories/snapshots>")
in your build file?_maven_("<https://s01.oss.sonatype.org/content/repositories/snapshots>")
org.kryptokrona.sdk:kryptokrona-http:0.1.0-SNAPSHOT
as your dependencyMarcus Cvjeticanin
03/13/2023, 9:12 PMmavenCentral()
, hmm. Gradle didn't say anything about it doesn't exist? I can't find it when i brows through "external libraries" in IntelliJ.Kirill Grouchnikov
03/13/2023, 9:13 PM0.1.0-SNAPSHOT
which is not the same as 0.1.0
. Snapshots don’t go to the same repository (central) as real releasesMarcus Cvjeticanin
03/13/2023, 9:14 PMKirill Grouchnikov
03/13/2023, 9:15 PMMarcus Cvjeticanin
03/13/2023, 9:16 PMKirill Grouchnikov
03/13/2023, 9:16 PMMarcus Cvjeticanin
03/13/2023, 9:16 PMKirill Grouchnikov
03/13/2023, 9:17 PM0.1.0
on the Nexus manager web interfaceMarcus Cvjeticanin
03/13/2023, 9:24 PMKirill Grouchnikov
03/13/2023, 9:43 PMMarcus Cvjeticanin
03/13/2023, 10:39 PM