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
e0c4f02d
Commit
e0c4f02d
authored
May 14, 2015
by
Tim Olshansky
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #54 from d4nj1/feature/build_script_gradle_v_2_4
* Upgraded gradle build script
parents
22ea8f49
6f79dc8a
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
40 additions
and
9 deletions
+40
-9
.gitignore
.gitignore
+3
-0
build.gradle
build.gradle
+35
-7
gradle-wrapper.jar
gradle/wrapper/gradle-wrapper.jar
+0
-0
gradle-wrapper.properties
gradle/wrapper/gradle-wrapper.properties
+2
-2
No files found.
.gitignore
View file @
e0c4f02d
...
...
@@ -8,3 +8,6 @@ target/*
/bin/
/target/
target
.classpath
.project
.settings
\ No newline at end of file
build.gradle
View file @
e0c4f02d
buildscript
{
tasks
.
withType
(
JavaCompile
)
{
options
.
encoding
=
'UTF-8'
}
}
apply
plugin:
'java'
apply
plugin:
'maven'
sourceCompatibility
=
1.7
targetCompatibility
=
1.7
group
=
'org.gitlab'
version
=
'1.1.8-SNAPSHOT'
repositories
{
mavenLocal
()
mavenCentral
()
}
dependencies
{
compile
'org.codehaus.jackson:jackson-core-asl:1.9.9'
compile
'org.codehaus.jackson:jackson-mapper-asl:1.9.9'
compile
'commons-io:commons-io:1.4'
testCompile
'org.hamcrest:hamcrest-all:1.3'
testCompile
'junit:junit:4.11'
compile
fileTree
(
dir:
'libs'
,
include:
[
'*.jar'
])
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'
)
testCompile
(
group:
'org.hamcrest'
,
name:
'hamcrest-all'
,
version:
'1.3'
)
testCompile
(
group:
'junit'
,
name:
'junit'
,
version:
'4.11'
)
}
jar
{
manifest
{
attributes
'Gradle-Version'
:
gradle
.
gradleVersion
}
}
install
{
repositories
.
mavenInstaller
{
pom
.
artifactId
=
'java-gitlab-api'
}
}
task
sourcesJar
(
type:
Jar
,
dependsOn:
classes
)
{
classifier
=
'sources'
from
sourceSets
.
main
.
allSource
}
artifacts
{
archives
sourcesJar
}
task
wrapper
(
type:
Wrapper
)
{
gradleVersion
=
'
1.12
'
gradleVersion
=
'
2.4
'
}
gradle/wrapper/gradle-wrapper.jar
View file @
e0c4f02d
No preview for this file type
gradle/wrapper/gradle-wrapper.properties
View file @
e0c4f02d
#Wed
Jul 02 09:36:44 CEST 2014
#Wed
May 13 23:55:44 CEST 2015
distributionBase
=
GRADLE_USER_HOME
distributionPath
=
wrapper/dists
zipStoreBase
=
GRADLE_USER_HOME
zipStorePath
=
wrapper/dists
distributionUrl
=
http
\:
//services.gradle.org/distributions/gradle-1.12
-bin.zip
distributionUrl
=
http
s
\:
//services.gradle.org/distributions/gradle-2.4
-bin.zip
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