Coder Social home page Coder Social logo

netzwerg / gradle-release-plugin Goto Github PK

View Code? Open in Web Editor NEW
44.0 6.0 9.0 170 KB

Gradle plugin providing very minimal release version numbering (Git-specific)

License: Apache License 2.0

Groovy 100.00%
gradle-plugin semantic-versioning release-automation

gradle-release-plugin's Issues

Clarify docs about the version pattern

The docs say, MAJOR.MINOR.PATCH[-SNAPSHOT] is the expected pattern. But, what I just found out is that MAJOR.MINOR[-SNAPSHOT] works as well (which is great). The docs could be more clear about that.

Add support for flavor based version.txt

My Android project have multiple flavor. e.g , brand_1 , brand_2 and brand_3 i would like to maintain the separate version.txt file each flavor. Looks there is no support on the current version. Could you please add the support ?

Build succeeds even if git push fails

If the git push command fails (for example, because someone else pushed a commit up while the release was running), then the release task should fail, but it does not. Instead, the build continues.

Unable the push tags

Hello everyone.

I'm wondering why I cannot push from some machines (in this case centos).

I got always the next issue after run gradle release

> Task :shadowJar
> Task :release
To [email protected]:group*/some-repo-path.git
 * [new tag]         v1.0.14 -> v1.0.14
error: unable to push to unqualified destination: HEAD
The destination refspec neither matches an existing ref on the remote nor
begins with refs/, and we are unable to guess a prefix based on the source ref.
error: failed to push some refs to '[email protected]:group*/some-repo-path.git'

Do you have any idea about this?

Thanks in advance

Could not determine the dependencies of task ':release'

Hi
I've added your plugin to my build.gradle file:

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath "com.github.jengelman.gradle.plugins:shadow:1.2.3"
        classpath 'ch.netzwerg:gradle-release-plugin:1.1.0'
    }
}

plugins {
    //Gradle release plugin from: https://github.com/netzwerg/gradle-release-plugin
    id 'ch.netzwerg.release' version '1.1.0'
}

subprojects {
    group 'myGroup'

    version '1.0.0.0-SNAPSHOT'

    apply plugin: 'java'

    apply plugin: 'com.github.johnrengelman.shadow'
    apply plugin: 'maven'

    // Use Java 8
    sourceCompatibility = 1.8

    repositories {
        mavenLocal()
        jcenter()
        maven {
             // Repositories we use
        }
    }

    dependencies {

        // Dependencies we use
    }

}

When I run:

gradle tasks

I get the following error:

FAILURE: Build failed with an exception.

  • What went wrong:
    Execution failed for task ':tasks'.

    Could not determine the dependencies of task ':release'.

Version.txt in subprojects

Is it necessary to have a separate version.txt in all subprojects? or am I doing something wrong? I have a version.txt in the main project root also.

A problem occurred evaluating root project 'zipkin'.
> Failed to apply plugin [id 'ch.netzwerg.release']
   > /Users/main_project/subproject/version.txt (No such file or directory)

Hook to publish release

Is there any way to build and publish release artifacts:

  • build snapshot
  • update version
  • commit version
  • push version
  • tag version
  • build release
  • publish release
  • update version
  • commit version
  • push version

git executable output needs to be logged before exiting

commitVersionFile("Release v$project.version", releaseExtension)

this leads to the problem that when git command is called it cant interprete correctly:

git commit -m Release v0.0.1 version.txt

vs

git commit -m "Release v0.0.1" version.txt

Why do we need a version.txt file

First of thanks for the plugin. I like the plugins outstanding simplicity.

I have a question regarding the version.txt file. Why is it needed? Would it not be better to just update the gradle build file instead?

push=true is not pushing

I am calling gradle -x test -s -d release -Prelease.push=true from my Jenkins/CI server to create tag and push the changes into git.

From the debug output I see that a tag was committed successfully but it is never pushed to origin/remote.

14:37:51.655 [DEBUG] [org.gradle.process.internal.DefaultExecHandle] Changing state to: STARTING
14:37:51.657 [DEBUG] [org.gradle.process.internal.DefaultExecHandle] Waiting until process started: command 'git'.
14:37:51.661 [DEBUG] [org.gradle.process.internal.DefaultExecHandle] Changing state to: STARTED
14:37:51.662 [DEBUG] [org.gradle.process.internal.ExecHandleRunner] waiting until streams are handled...
14:37:51.663 [INFO] [org.gradle.process.internal.DefaultExecHandle] Successfully started process 'command 'git''
14:37:51.695 [DEBUG] [org.gradle.process.internal.DefaultExecHandle] Changing state to: SUCCEEDED
14:37:51.696 [DEBUG] [org.gradle.process.internal.DefaultExecHandle] Process 'command 'git'' finished with exit value 0 (state: SUCCEEDED)
14:37:51.697 [DEBUG] [ch.netzwerg.gradle.release.ReleaseTask] [detached HEAD 593f269] Prepare next release v0.0.6-SNAPSHOT

when adding the push entry in my build.gradle it is working.

release{
   push=true
}

is the parameter -Prelease.push=true incorrect?

Issue with Single Quotes on Windows

Hi,

The plugin has worked well on MacOS, running the gradle script on a Windows machine using GitBash, the following error results. Is this an issue with the use of Single Quotes rather than Double Quotes? If so, what recommendations do you have for resolving this?

Thanks!

:releaseerror: pathspec 'version.txt' did not match any file(s) known to git.
FAILED

FAILURE: Build failed with an exception.

  • What went wrong:
    Execution failed for task ':release'.

Process 'command 'git'' finished with non-zero exit value 1

Master branch is moved after pushing with the plugin

Hello Rahel,

I enabled to push on release and I now have the problem that the plugin is pushing to a new master branch. On the screenshot you see TAG 1.0.1. This was actually my master brach 19da802 it now became 1.0.1

screenshot 2016-06-01 11 14 52

On the second screenshot you can see that the current master is a complete new branch.

screenshot 2016-06-01 11 16 39

Jenkins is checking out the code in this way

Checking out Revision 19da802c997053214cef316e895e018089286c11 (refs/remotes/origin/master)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f 19da802c997053214cef316e895e018089286c11 # timeout=10
 > git branch -a -v --no-abbrev # timeout=10
 > git checkout -b master 19da802c997053214cef316e895e018089286c11
 > git rev-list 19da802c997053214cef316e895e018089286c11 # timeout=10

Is this normal behavior

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.