Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .mvn/wrapper/maven-wrapper.jar
Binary file not shown.
1 change: 1 addition & 0 deletions .mvn/wrapper/maven-wrapper.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.5.0/apache-maven-3.5.0-bin.zip
10 changes: 5 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
language: java
sudo: false
sudo: required
services:
- docker
jdk:
- oraclejdk7
install:
- ./gradlew assemble
- ./mvnw -B -q -Pdocker-gitlab dependency:go-offline verify -DskipTests -Ddocker.skip
script:
- ./gradlew check
before_deploy:
- ./gradlew deployZip
- ./mvnw -B -V -Pdocker-gitlab verify
9 changes: 9 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# How to contribute


* The integration tests need a running Docker infrastructure.
* To execute these, run `mvn -Pdocker-gitlab clean verify`. This will spawn
a new gitlab instance (`pull` needs some time and starting `gitlab-ce` may take up to 3 minutes).
* To run integration tests in your IDE, you need to execute `mvn -Pdocker-gitlab,docker-ide docker:start`.
* Once you are done, you may stop gitlab by executing `mvn -Pdocker-gitlab,docker-ide docker:stop`.
* For more information about the API, take a look at the [documentation](https://gitlab.com/help/api/README.md).
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Gitlab Java API Wrapper

[![Maven Central](https://img.shields.io/maven-central/v/org.gitlab/java-gitlab-api.svg)](http://mvnrepository.com/artifact/org.gitlab/java-gitlab-api)

[![Build Status](https://travis-ci.org/timols/java-gitlab-api.svg?branch=master)](https://travis-ci.org/timols/java-gitlab-api)
A wrapper for the [Gitlab API](https://gitlab.org) written in Java.

[Documentation](https://timols.github.io/java-gitlab-api) is available in the form of [Javadocs](https://timols.github.io/java-gitlab-api)
The major version indicates the API version of gitlab.
225 changes: 225 additions & 0 deletions mvnw

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading