You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In order to remove plugins effectively
As a plugin developer
I want the gradle-jpi-plugin to remove plugins from the work directory when they are removed from dependencies
Given I have a build.gradle like this:
plugins {
id 'org.jenkins-ci.jpi' version '0.39.0'
}
jenkinsPlugin {
coreVersion ='2.222.3'
}
dependencies {
implementation 'org.jenkins-ci.plugins:git:4.0.1'
}
When I run ./gradlew server the git plugin
Then its dependencies are installed to work/plugins
When I remove the plugin and add another
Then the old plugin still remains in work/plugins
And is loaded by Jenkins
The text was updated successfully, but these errors were encountered:
- #165 Introduce InstallJenkinsServerPluginsTask to sync plugins from
project dependencies to $workDir/plugins
- #136 Introduce GenerateJenkinsServerHplTask and test through TestKit
- Introduce ProjectFile.Builder and friends to improve readability of
tests
In order to remove plugins effectively
As a plugin developer
I want the gradle-jpi-plugin to remove plugins from the work directory when they are removed from dependencies
Given I have a
build.gradle
like this:When I run
./gradlew server
the git pluginThen its dependencies are installed to
work/plugins
When I remove the plugin and add another
Then the old plugin still remains in
work/plugins
And is loaded by Jenkins
The text was updated successfully, but these errors were encountered: