Skip to content

m4kvn/ChatWork4j

Repository files navigation

ChatWork4j

ChatWork4j is the Library for Java to use ChatWork API.

You can use ChatWork4j by adding it to your maven or gradle project.

Downloads

ChatWork4j Version ChatWork API Version
1.2 v1
2.0 v2

Javadoc

https://masahirosaito.github.io/ChatWork4j/

How to add to dependency

repository url
https://github.com/MasahiroSaito/ChatWork4j/raw/master/repo
dependency
groupId com.MasahiroSaito
artifactId ChatWork4j
version 2.0

Gradle in build.gradle

repositories

    maven {
        name = 'chatwork4j-repo'
        url = 'https://github.com/MasahiroSaito/ChatWork4j/raw/master/repo'
    }

dependencies

    compile 'com.MasahiroSaito:ChatWork4j:2.0'

Maven in pom.xml

repositories

  <repository>
    <id>chatwork4j-repo</id>
    <url>https://github.com/MasahiroSaito/ChatWork4j/raw/master/repo</url>
  </repository>

dependencies

  <dependency>
    <groupId>com.MasahiroSaito</groupId>
    <artifactId>ChatWork4j</artifactId>
    <version>2.0</version>
  </dependency>