Commit ce178d6e authored by Tim Olshansky's avatar Tim Olshansky

Merge pull request #66 from bozaro/fix-compile

Compilation fix
parents 080232de a1182a42
language: java
sudo: false
jdk:
- oraclejdk7
install:
- ./gradlew assemble
script:
- ./gradlew check
before_deploy:
- ./gradlew deployZip
......@@ -19,11 +19,10 @@ repositories {
}
dependencies {
compile(group: 'org.codehaus.jackson', name: 'jackson-core-asl', version: '1.9.13')
compile(group: 'org.codehaus.jackson', name: 'jackson-mapper-asl', version: '1.9.13')
compile(group: 'commons-io', name: 'commons-io', version: '1.4')
compile(group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.5.3')
compile(group: 'commons-io', name: 'commons-io', version: '2.4')
testCompile(group: 'org.hamcrest', name: 'hamcrest-all', version: '1.3')
testCompile(group: 'junit', name: 'junit', version: '4.11')
testCompile(group: 'junit', name: 'junit', version: '4.12')
}
jar {
......
......@@ -177,7 +177,6 @@ public class GitlabAPI {
* @param bio Bio
* @param isAdmin Is Admin
* @param can_create_group Can Create Group
* @param skip_confirmation Skip Confirmation
* @return The Updated User
* @throws IOException on gitlab api call error
*/
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment