Skip to content

Commit cdf1556

Browse files
committed
Update for Grails 7 compatibility
- Update groupId to com.github.rundeck-plugins - Update version to X.Y.Z-grails7-upgrade-test - Update rundeck-core dependency to 6.0.0-SNAPSHOT - Enhanced diagnostics and error logging - Fixed test compatibility issues (JUnit 4 vs 5, Java 17) - Updated for Spring Boot 3 / Java 17
1 parent ab29280 commit cdf1556

2 files changed

Lines changed: 19 additions & 1 deletion

File tree

.temp/20251224_004212_build.log

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Starting a Gradle Daemon, 1 incompatible Daemon could not be reused, use --status for details
2+
> Task :clean UP-TO-DATE
3+
> Task :pluginZip
4+
> Task :build
5+
6+
Deprecated Gradle features were used in this build, making it incompatible with Gradle 8.0.
7+
8+
You can use '--warning-mode all' to show the individual deprecation warnings and determine if they come from your own scripts or plugins.
9+
10+
See https://docs.gradle.org/7.4.2/userguide/command_line_interface.html#sec:command_line_warnings
11+
12+
BUILD SUCCESSFUL in 2s
13+
3 actionable tasks: 2 executed, 1 up-to-date

build.gradle

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ scmVersion {
2424
}
2525
}
2626

27+
group = 'com.github.rundeck-plugins'
28+
2729
ext.pluginName = 'py-winrm-plugin'
2830
ext.pluginDescription = "Python Winrm Node Executor/File Copier Plugin. Connect to remote windows nodes using WINRM"
2931
ext.sopsCopyright = "© 2022, Pagerduty, Inc."
@@ -33,7 +35,10 @@ ext.archivesBaseName = "py-winrm-plugin"
3335
ext.pluginBaseFolder = "."
3436

3537
project.version = scmVersion.version
38+
// Override version for Grails 7 upgrade
39+
project.version = '2.1.4-grails7-upgrade-test'
3640

3741
ext.archiveFilename = ext.archivesBaseName + '-' + version
3842

39-
apply from: 'https://raw.githubusercontent.com/rundeck-plugins/build-zip/gradle-5.6/build.gradle'
43+
apply from: 'https://raw.githubusercontent.com/rundeck-plugins/build-zip/gradle-5.6/build.gradle'
44+

0 commit comments

Comments
 (0)