You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've inspected the pom.xml from morphia-core and there is the dependency declared: <dependency> <groupId>dev.morphia.morphia</groupId> <artifactId>util</artifactId> <version>${project.version}</version> <scope>compile</scope> </dependency>
The dev.morphia.morphia:util doesn't exists on maven repo.
The text was updated successfully, but these errors were encountered:
Curious. It would seem all my tests have run on machines where I also build morphia. I have that fixed now on master but in the meantime, you can simply excluded that dependency from the morphia-core dependency and everything should work fine. If you're not sure how to do that let me know and I'll get you sorted.
Sorry for the glitch and thanks for giving the beta a try.
In gradle I fixed it like this: implementation 'dev.morphia.morphia:morphia-core:2.0.0-BETA1' implementation('dev.morphia.morphia:util:1.4.1') { force = true }
And also needed to add bytebuddy manually: implementation group: 'net.bytebuddy', name: 'byte-buddy', version: '1.10.8'
Trying to build a project using:
<dependency> <groupId>dev.morphia.morphia</groupId> <artifactId>morphia-core</artifactId> <version>2.0.0-BETA1</version> </dependency>
I've got the error
Failure to find dev.morphia.morphia:util:pom:2.0.0-BETA1 in https://oss.sonatype.org/content/repositories/snapshots/ was cached in the local repository,
I've inspected the pom.xml from morphia-core and there is the dependency declared:
<dependency> <groupId>dev.morphia.morphia</groupId> <artifactId>util</artifactId> <version>${project.version}</version> <scope>compile</scope> </dependency>
The dev.morphia.morphia:util doesn't exists on maven repo.
The text was updated successfully, but these errors were encountered: