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 APIs.
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.2.0' }
}
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)
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.
apply plugin: 'github'
This merely adds the github
extension object.
The Github repository can be specified using the extension. This is only used when cloning the repository.
githubPages.repoUri = 'https://[email protected]/ajoberstar/gradle-git.git'
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 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
.
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.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.