Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
J
java-gitlab-api
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
沈俊林
java-gitlab-api
Commits
ce178d6e
Commit
ce178d6e
authored
Aug 30, 2015
by
Tim Olshansky
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #66 from bozaro/fix-compile
Compilation fix
parents
080232de
a1182a42
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
5 deletions
+13
-5
.travis.yml
.travis.yml
+10
-0
build.gradle
build.gradle
+3
-4
GitlabAPI.java
src/main/java/org/gitlab/api/GitlabAPI.java
+0
-1
No files found.
.travis.yml
0 → 100644
View file @
ce178d6e
language
:
java
sudo
:
false
jdk
:
-
oraclejdk7
install
:
-
./gradlew assemble
script
:
-
./gradlew check
before_deploy
:
-
./gradlew deployZip
build.gradle
View file @
ce178d6e
...
@@ -19,11 +19,10 @@ repositories {
...
@@ -19,11 +19,10 @@ repositories {
}
}
dependencies
{
dependencies
{
compile
(
group:
'org.codehaus.jackson'
,
name:
'jackson-core-asl'
,
version:
'1.9.13'
)
compile
(
group:
'com.fasterxml.jackson.core'
,
name:
'jackson-databind'
,
version:
'2.5.3'
)
compile
(
group:
'org.codehaus.jackson'
,
name:
'jackson-mapper-asl'
,
version:
'1.9.13'
)
compile
(
group:
'commons-io'
,
name:
'commons-io'
,
version:
'2.4'
)
compile
(
group:
'commons-io'
,
name:
'commons-io'
,
version:
'1.4'
)
testCompile
(
group:
'org.hamcrest'
,
name:
'hamcrest-all'
,
version:
'1.3'
)
testCompile
(
group:
'org.hamcrest'
,
name:
'hamcrest-all'
,
version:
'1.3'
)
testCompile
(
group:
'junit'
,
name:
'junit'
,
version:
'4.1
1
'
)
testCompile
(
group:
'junit'
,
name:
'junit'
,
version:
'4.1
2
'
)
}
}
jar
{
jar
{
...
...
src/main/java/org/gitlab/api/GitlabAPI.java
View file @
ce178d6e
...
@@ -177,7 +177,6 @@ public class GitlabAPI {
...
@@ -177,7 +177,6 @@ public class GitlabAPI {
* @param bio Bio
* @param bio Bio
* @param isAdmin Is Admin
* @param isAdmin Is Admin
* @param can_create_group Can Create Group
* @param can_create_group Can Create Group
* @param skip_confirmation Skip Confirmation
* @return The Updated User
* @return The Updated User
* @throws IOException on gitlab api call error
* @throws IOException on gitlab api call error
*/
*/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment