This is an automated email from the ASF dual-hosted git repository. vladimirsitnikov pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/jmeter.git
commit 3e2dda1939b89b16d1afd8d175e23d07f9256caf Author: Vladimir Sitnikov <[email protected]> AuthorDate: Sat Oct 5 11:04:59 2019 +0300 Kepp lib/ext/*.jar on gw runGui and gw createDist This helps a bit in case developer has extra plugins in lib/ext/* --- src/dist/build.gradle.kts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/dist/build.gradle.kts b/src/dist/build.gradle.kts index cb1e6a3..2956106 100644 --- a/src/dist/build.gradle.kts +++ b/src/dist/build.gradle.kts @@ -152,6 +152,8 @@ val copyLibs by tasks.registering(Sync::class) { // it just removes everything it sees. // We configure it to keep txt files that should be present there (the files come from Git source tree) include("**/*.txt") + // Keep jars in lib/ext so developers don't have to re-install the plugsin again and again + include("ext/*.jar") } into("ext") { with(libsExt)
