A set of plugins to support Git in the Gradle build tool.
There are two primary use cases for these plugins:
- Publishing to a Github Pages website. The
github-pages
plugin adds support for publishing static files to thegh-pages
branch of a Git repository. - General Git actions. The
gradle-git
JAR provides numerous tasks for basic Git functions that can be performed as part of your build.
For more information see the documentation in the next sections as well as the full list of tasks and plugins.
API Documentation:
Credit goes to Peter Ledbrook for the initial idea.
Add the following lines to your build to use the gradle-git plugins.
buildscript {
repositories { mavenCentral() }
dependencies { classpath 'org.ajoberstar:gradle-git:0.6.3' }
}
If all you want to do is use a few of the tasks, there aren't any plugins to apply. You merely need to start using the tasks:
import org.ajoberstar.gradle.git.tasks.*
task tag(type: GitTag) {
tagName = version
message = "Release of ${version}"
}
For details on the available methods/properties see the API docs listed above.
By default all GitBase
tasks (any task that acts on an existing local
repository, i.e. everything except GitClone
) will act on the repository
stored in the root Gradle project's directory.
This can be overriden with the following:
task add(type: GitAdd) {
repoPath = 'some/other/place/to/look'
}
All authentication methods supported by JGit should be supported by these plugins. However, the only ones that are tested are:
- Username/Password
- SSH (with or without a passphrase)
- sshagent and Pageant are also supported
On any task that supports/requires credentials, you will have two options for configuration:
Use the credentials
property/method to configure username/password creds
task push(type: GitPush) {
credentials {
username = 'something'
password = 'somethingSecret'
}
}
It is unlikely that you would hardcode your password into the build file, so
you should store these in another file, such as the user level Gradle properties
(~/.gradle/gradle.properties
).
If no username/password credentials are provided programmatically, you will be prompted for any necessary credentials at execution time. This method has been tested with username/password auth, as well as SSH w/ passphrase auth.
To apply the Github Pages plugin add the following line to your build:
apply plugin: 'github-pages'
This configures tasks needed to clone, add, commit, and push changes to the gh-pages branch of your Github repository.
The repository that the pages will be pushed to is configured via the
githubPages
extension:
githubPages {
repoUri = 'git@github.com:ajoberstar/gradle-git.git'
}
The files that will be published to gh-pages are in the githubPages.pages
CopySpec. By default all files in src/main/ghpages
will be included. The
default location the repository will be cloned to is build/ghpages
. This
can be configured with githubPages.workingPath
.
githubPages {
pages {
from(javadoc.outputs.files) {
into 'docs/javadoc'
}
from(groovydoc.outputs.files) {
into 'docs/groovydoc'
}
}
workingPath = 'build/somewhere/else'
}
To publish your changes run:
./gradlew publishGhPages
Beyond what is mentioned above, the github-pages plugin also provides a
file based way to authenticate. If you are using username/password
credentials and don't want to re-enter them during each build, you can
specify the credentials in the gradle.properties
file. As these are
sensitive values, they should not be in the project's gradle.properties
,
but rather in the user's ~/.gradle/gradle.properties
.
github.credentials.username = username
github.credentials.password = password
v0.6.3
- Fixed jsch-agent-proxy support to fall back to other options when agents aren't really available. See #31.
v0.6.2
- Added
GitInit
to simply initialize a new local Git repo. Contributed by Rasmus Praestholm
v0.6.1
- Updated
GitPush
to support specifying branch names or specs to push. Contributed by Benjamin Muschko
v0.6.0
- Added support for jsch-agent-proxy. This allows use of sshagent and Pageant to provide ssh credentials.
v0.5.0
- Added support for checking out tags on
GitClone
. - Fixed a bug with
GitAdd
that prevented adding individual files from a subdirectory of the repository.
v0.4.0
- Minor update to
GitCommit
to allow include/exclude rules for the files to commit, courtesy of Evgeny Shepelyuk.
v0.3.0
- Added
GitBranchCreate
,GitBranchList
,GitBranchTrackingStatus
,GitCheckout
,GitStatus
tasks courtesy of Evgeny Shepelyuk.
v0.2.3
- Added
GitClean
andGitLog
tasks contributed by Alex Lixandru
NOTE: The GitLog
tag only supports commit hashes (abbreviated or full). Tag names do not work
right now.
v0.2.2
- Fix: If
cloneGhPages
does not checkout thegh-pages
branch, most likely because it doesn't exist, the task will fail.
v0.2.1
- Added
GitFetch
,GitMerge
,GitPull
, andGitReset
tasks contributed by Alex Lixandru.
v0.2.0
This release does contain breaking changes.
- Consolidated plugins into
GithubPagesPlugin
. The existingGithubPlugin
andGitPlugin
provided no useful functionality. - Centralized implementation for retrieving authentication.
v0.1.2
- Added support for SSH connections with the help of Urs
v0.1.1
- Added
GitTag
task contributed by Urs Reupke. - The
repoPath
for all Git tasks is defaulted to the root project's directory.
v0.1.0
Initial release.