zakgof / actr

Simple, fast and typesafe Java actor model implementation
Apache License 2.0
119 stars 20 forks source link

how can i test it. mvn could not find the jar #14

Closed JusticeN closed 4 years ago

JusticeN commented 4 years ago

after adding this dependency to my mvn project

<dependency>
            <groupId>com.github.zakgof</groupId>
            <artifactId>actr</artifactId>
            <version>0.4.0</version>
</dependency>

i get thie error.

Could not find artifact com.github.zakgof:actr:pom:0.4.0 in central (https://repo.maven.apache.org/maven2)

does anyone has an ideas why. it seems like it is no more awailaible in maven repo

zakgof commented 4 years ago

actr is hosted on jcenter, just add it to repositories:


<repositories>
    <repository>
        <id>jcenter</id>
        <name>jcenter</name>
        <url>https://jcenter.bintray.com</url>
    </repository>
</repositories>`
JusticeN commented 4 years ago

thank it works now