botcity-dev/botcity-framework-core

Missing dependencies

HeliangCN opened this issue · 1 comments

Hi @hhslepicka, I'm having trouble importing the project.
Could not find artifact org.marvinproject:MarvinFramework:pom:2.0 in central (https://repo.maven.apache.org/maven2)
Could not find artifact org.marvinproject:MarvinPlugins:pom:2.0 in central (https://repo.maven.apache.org/maven2)
1657701388087

I can't find it in https://mvnrepository.com either
1657701538149
1657701651438

@HeliangCN, sorry for the late reply.
All the dependencies are now available via our Nexus repository. We will soon add them to Maven Central as well but for now you can do the following on your pom.xml:

    <repositories>
        <repository>
            <id>nexus-botcity-public</id>
            <url>https://devtools.botcity.dev:8081/repository/botcity-public/</url>
            <releases>
                <enabled>true</enabled>
            </releases>
            <snapshots>
                <enabled>true</enabled>
            </snapshots>
        </repository>
    </repositories>

And pull the dependencies from there.

Feel free to reopen the issue in case this didn't work for your code.