Releases: jcabi/jcabi-github
Releases · jcabi/jcabi-github
First stable version
This is the first version that enables true object oriented interaction with Github API v3, for example:
public class Main {
public static void main(String[] args) {
Github github = new Github.Simple(".. your OAuth token ..");
Repo repo = github.repo("jcabi/jcabi-github");
Issue issue = repo.issues().create("How are you?", "Please tell me...");
issue.post("My first comment!");
}
}