hank-cp / sbp

Plugin framework for Spring Boot based on pf4j.
Apache License 2.0
205 stars 67 forks source link

Missing dependency on maven central repository #8

Closed fabioformosa closed 4 years ago

fabioformosa commented 4 years ago
Missing artifact com.github.hank-cp:spring-static-ctx:jar:0.1.1

It's a transitive dependency imported by sbp-spring-boot-starter and it's not in maven central repository.

hank-cp commented 4 years ago

Released. Thanks to figure it out...😛

fabioformosa commented 4 years ago

You've published it with groupId org.laxture but cdb-core looks for com.github.hank-cp:spring-static-ctx.

hank-cp commented 4 years ago

com.github.hank-cp:spring-static-ctx is avaiable from https://jitpack.io/.

Have unify libs location from maven central. Please check out version SNAPSHOT for now, or add following config to your build.gradle (if you are using gradle):

    repositories {
        ......
        maven { url "https://jitpack.io" }
    }