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 found hundreds of Scala dependencies referenced in an specific organization that are not found in the Maven Central repository (http://central.maven.org/maven2/).
These dependencies are fetched from the following Maven-compatible repositories, which are assigned to the resolvers attribute inside the SBT configuration:
All these repositories follow the standard Maven repository structure, so it is just a matter of generalizing the Maven2PackageRegistry class to work with any standard Maven repository URL (also, rename it to just MavenPackageRegistry). We can have a list of Maven repositories and search all of them until we find the artifact we're looking for.
The text was updated successfully, but these errors were encountered:
I've found hundreds of Scala dependencies referenced in an specific organization that are not found in the Maven Central repository (http://central.maven.org/maven2/).
These dependencies are fetched from the following Maven-compatible repositories, which are assigned to the
resolvers
attribute inside the SBT configuration:All these repositories follow the standard Maven repository structure, so it is just a matter of generalizing the
Maven2PackageRegistry
class to work with any standard Maven repository URL (also, rename it to justMavenPackageRegistry
). We can have a list of Maven repositories and search all of them until we find the artifact we're looking for.The text was updated successfully, but these errors were encountered: