One of my build scripts imports that nebula plugin:
plugins {
id 'nebula.ospackage' version '3.5.0'
}
I've been moving all of my version info into a separate file that all projects have access to and am wondering what is the correct syntax to…
I have a multi-module project using Java, Gradle and spring boot.
In order to figure out whether I have any unused dependencies that I can cleanup I tried to use the Nebula Gradle Lint Plugin to find unused or undeclared dependencies.
I try to it as…
I'm encountering a weird error, I want to use the nebula.release plugin in Gradle. I'fe had success adding it both of the following ways:
plugins {
id 'nebula.release' version '6.3.5'
}
and
dependencies {
classpath…
Is it possible to set build retention on Artifactory using gradle using the netflix nebula plugins?
I've searched the Internet and all I've been able to find is how to set build retention using Jenkins pipeline:
buildInfo.retention maxBuilds:…
Trying to build micrometer version 1.5.9.
Getting following error:-
Where:
Build file '/Users/abc/Desktop/micrometer/build.gradle' line: 29
What went wrong:
A problem occurred evaluating root project 'micrometer'.
Failed to apply plugin class…
I am having trouble getting my library deployed to bintray and synced to Maven Central. It appears that I'm using the plugin wrong, but I cannot figure out how. I've tried many things including using the kotlin gradle dsl, extracting logic out of…
I am maintaining a project using gradle with nebula for release and semver. For various reasons, I want to prevent the nebula plugin (gradle clean final) to push the created git tag by itself and delegate this into another place in my (jenkins)…
I have the following buildscript and I need to force directory permissions and create an empty directory. I found on many places that the following code should work, but it does not. Any hints whats wrong?
buildscript {
dependencies {
…
I'm building a native code package with the nebula.os-package plugin for gradle. I need to specify that glibc of the correct architecture is a requirement. I tried the obvious
requires 'glibc%{?_isa}'
but then rpm -qpR foo.rpm unhelpfully…
Is it possible to have multiple release git branches with the own release train? Suppose I have branches master, release/v1, release/v2. I'm pushing to the branches independently and want to create the independent releases.
Example:
master -…
We have a Jenkins configured to use Github app to perform all Git related activities. A project of ours uses the Nebula Gradle plugin for release process. So, whenever the final task runs on Jenkins, the first Gradle task that runs is prepare which…
I have recently upgraded to Gradle 8 finding out that the nebula.ospackage plugin distributed in Gradle plugin Portal is not compatible.
In gradle-ospackage-plugin GitHub repo, there's the 11 version which claim to resolve the incompatibility with…
Using Nebula RPM Plugin I have some issues with incremental build support, for some of the ospackage extension properties.
See simple example below:
plugins {
id "nebula.ospackage" version "9.1.1"
}
ospackage {
packageDescription = "my sample…
I have a gradle project that I need to do some automated releasing in and I am supposed to use the nebula-release-plugin. I have not tried to release with gradle before, so I am following this approach. When I try to add the nebula plugin, I get a…
I was using netflix's nebula. Looking here, I saw this line:
fileType [org.freecompany.redline.payload.Directive] - Default for types, e.g. CONFIG, DOC, NOREPLACE, LICENSE
I didn't find any doc about the actual meaning of this enum, but I've found…