Questions tagged [grgit]

Grgit is a wrapper over JGit that provides a fluent API for interacting with Git repositories in Groovy-based tooling.

About

Grgit is a wrapper over that provides a fluent API for interacting with repositories in Groovy-based tooling.

With the tooling focus, "porcelain" commands are the primary scope of what is included. Features that require more user interaction (such as resolving merge conflicts) are intentionally excluded.

Links

32 questions
0
votes
1 answer

Exception caught during execution of push command

I have a task : task tagRepo1 << { logger.info("adding tag in the repo") def buildNumber = '545' if (!buildNumber) { // not to be executed outside build system throw new Exception('tagRepo should only be executed via build, no build number…
sver
  • 866
  • 1
  • 19
  • 44
-1
votes
2 answers

grgit NoClassDefFoundError

Gradle throws a NoClassDefFoundError when trying to execute a grgit task. Start of build.gradle: buildscript { repositories { mavenCentral() } dependencies { classpath 'com.android.tools.build:gradle:2.1.2' …
user149408
  • 5,385
  • 4
  • 33
  • 69
1 2
3