samczsun / Skype4J

Skype API written in Java. Does not support P2P chats
Apache License 2.0
145 stars 48 forks source link

Version? #136

Open sistem21 opened 8 years ago

sistem21 commented 8 years ago

Hello to everyone, today i was adding ban implementation to my bot, but i've seen it was added in the 0.2.0 version. I'm using the 0.1.5 and when i try to change, eclipse give me an error (in the pom.xml) saying: "missing artifact for skype4j:0.2.0"

ex00 commented 8 years ago

Hello. The skype4j:0.2.0 don't published in central maven, yet: http://search.maven.org/#search%7Cga%7C1%7C%20skype4j You can published current master version 0.2.0-SNAPSHOT in local maven repo on your machine. for it: git clone https://github.com/samczsun/Skype4J.git && cd Skype4J && mvn clean install and include this version to your pom.xml file.

slavias commented 8 years ago

Also you can add github repo to maven and get artifacts by commit

<repositories>
    <repository>
        <id>jitpack.io</id>
        <url>https://jitpack.io</url>
    </repository>
</repositories>
<dependency>
    <groupId>com.github.samczsun</groupId>
    <artifactId>Skype4J</artifactId>
    <version>-v0.1.5-g1fc4e07-42</version>
</dependency>

this site helps to define version of artifact Also there are some errors in ban implementation described in #134. Be careful=)

slavias commented 8 years ago

When new version will be published to Maven repo?

ducc commented 8 years ago

@slavias don't count on it being anytime soon, sam appears to have been very busy recently.