gitpublisher

View on GitHub

gitpublisher

I still have a strong preference for Subversion as my source code repository, and for my (private) projects, I have set up a private Subversion server somewhere in the internet.

But for publishing those projects and the related sources to the public domain, nowadays Git is the tool of choice and GitHub is one of the platforms to be.

As the answer to this requirement, I created the Gradle plugin gitpublisher that you will find here.

Basically, it works like this:

  1. Get the remote Git repository on your hard drive by cloning it into a temporary folder.
  2. Copy the files from your project into that working copy.
  3. Commit the changes.
  4. Push the repository.
  5. Cleanup by removing the temporary folder.

Documentation

The Javadoc Reference Documentation gives some more insight.

Configuration

The metaDir Folder

Usually, you have several files and folders in the root of your project that you do not want to publish – at least this is true for me!

A solution could be to add these files explicitly to the sourcesList; or to add the root folder as a whole, and list the unwanted files to the ignoresList.

But than I found that sometimes I want to publish another version of a file to the public Git repository than that I use when I build the project in my own environment. So I introduced the metaDir folder: all files in that folder are copied to the root of the repository.