Skip to content

Commit dc68f13

Browse files
authored
Upgrade to gradle plugins 1.27.0 (#72)
* Delete unnecessary `copyTagLibsBase` task
1 parent 08622eb commit dc68f13

File tree

2 files changed

+1
-17
lines changed

2 files changed

+1
-17
lines changed

build.gradle

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -298,22 +298,6 @@ subprojects {
298298
description: "Displays the dependencies for all projects")
299299
}
300300

301-
// We copy the resource files to a separate directory so they can be copied to jsptmp directory
302-
// for use in compiling JSPs. Copying directly from the project.sourceSets.webapp.output for the JSP
303-
// task for api does not work when modules may be evaluated before the api module is evaluated. Attempts to
304-
// declare evaluationDependsOn(:server:api) for each of these projects did not work.
305-
// This task is defined at the root to eliminate problems with evaluation order
306-
project.task("copyTagLibsBase",
307-
type: Copy,
308-
{CopySpec copy ->
309-
copy.from "${BuildUtils.getApiProjectPath(gradle).replace(":", "/").substring(1)}/webapp"
310-
copy.into "${project.buildDir}/webapp"
311-
copy.include 'WEB-INF/web.xml'
312-
copy.include 'WEB-INF/*.tld'
313-
copy.include 'WEB-INF/*.jspf'
314-
}
315-
)
316-
317301
project.task("showDiscrepancies",
318302
group: "Help",
319303
type: ShowDiscrepancies,

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ windowsProteomicsBinariesVersion=1.0
5858
bintrayPluginVersion=1.8.4
5959
artifactoryPluginVersion=4.13.0
6060
gradleNodePluginVersion=2.2.4
61-
gradlePluginsVersion=1.25.1
61+
gradlePluginsVersion=1.27.0
6262
owaspDependencyCheckPluginVersion=5.2.1
6363
versioningPluginVersion=1.1.0
6464

0 commit comments

Comments
 (0)