Skip to content

Commit 8743b72

Browse files
Gradle plugins version updates and xmlBeans version update (#921)
1 parent e0a66bd commit 8743b72

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

gradle.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ windowsProteomicsBinariesVersion=1.0
5858

5959
# The current version numbers for the gradle plugins.
6060
artifactoryPluginVersion=5.2.5
61-
gradleNodePluginVersion=3.5.1
62-
gradlePluginsVersion=4.2.0
61+
gradleNodePluginVersion=7.1.0
62+
gradlePluginsVersion=5.0.0
6363
owaspDependencyCheckPluginVersion=11.0.0
6464
versioningPluginVersion=1.1.2
6565

@@ -322,4 +322,4 @@ xercesImplVersion=2.12.2
322322
xmlApisVersion=1.0.b2
323323

324324
# sync with Tika/POI
325-
xmlbeansVersion=5.2.0
325+
xmlbeansVersion=5.2.1

server/embedded/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,10 +93,10 @@ project.tasks.register(
9393
"checkVersionConflicts", CheckForVersionConflicts)
9494
{ CheckForVersionConflicts task ->
9595
task.group = GroupNames.BUILD
96-
task.description = "Check for conflicts in version numbers of jar file and files already in the build directory ${ServerDeployExtension.getEmbeddedServerDeployDirectory(project)}. " +
96+
task.description = "Check for conflicts in version numbers of jar file and files already in the build directory ${ServerDeployExtension.getEmbeddedServerDeployDirectoryPath(project)}. " +
9797
"Default action on detecting a conflict is to fail. Use -PversionConflictAction=[delete|fail|warn] to change this behavior. The value 'delete' will cause the " +
98-
"conflicting version(s) in the ${ServerDeployExtension.getEmbeddedServerDeployDirectory(project)} directory to be removed."
99-
task.directory = new File(ServerDeployExtension.getEmbeddedServerDeployDirectory(project))
98+
"conflicting version(s) in the ${ServerDeployExtension.getEmbeddedServerDeployDirectoryPath(project)} directory to be removed."
99+
task.directory = new File(ServerDeployExtension.getEmbeddedServerDeployDirectoryPath(project))
100100
task.extension = "jar"
101101
task.cleanTask = "server:cleanEmbeddedDeploy"
102102
task.collection = project.tasks.bootJar.outputs.files

0 commit comments

Comments
 (0)