Mattermost API v4 client for Java.
- JDK 8 or 11
- for JDK 11 users: You may add these dependencies for runtime
- Jakarta XML Binding
- Jakarta Activation
- for JDK 11 users: You may add these dependencies for runtime
- Mattermost Server
- Please check mattermost4j version compatible with your server instance: https://github.com/maruTA-bis5/mattermost4j/wiki#what-version-shoud-i-use
// Create client instance
MattermostClient client;
// case 1. use constructor - log disable and prohibit unknown properties
client = new MattermostClient("YOUR-MATTERMOST-URL");
// case 2. use builder
client = MattermostClient.builder()
.url("YOUR-MATTERMOST-URL")
.logLevel(Level.INFO)
.ignoreUnknownProperties()
.build();
// Login by id + password
client.login(loginId, password);
// Login by Personal Access Token
client.setAccessToken(token);
// You can also use builder for create client instance.
IncomingWebhookClient client = new IncomingWebhookClient("YOUR-MATTERMOST-URL");
IncomingWebhookRequest payload = new IncomingWebhookRequest();
payload.setText("Hello World!");
payload.setUsername("Override Username");
client.postByIncomingWebhook(payload);
<dependency>
<groupId>net.bis5.mattermost4j</groupId>
<artifactId>mattermost4j-core</artifactId>
<version>0.22.1</version>
</dependency>
compile 'net.bis5.mattermost4j:mattermost4j-core:0.22.1'
- Fork it ( https://github.com/maruTA-bis5/mattermost4j/fork )
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create new Pull Request
use https://github.com/google/styleguide/ {intellij,eclipse}-java-google-style.xml .
Currently, use CheckStyle's built-in google_checks.xml
.
mvn test
docker-compose up
mvn verify