From 27eec0137f40a134a181b4738859a160749babe2 Mon Sep 17 00:00:00 2001 From: Ben Soares Date: Wed, 21 Jul 2021 12:50:15 +0100 Subject: [PATCH] JAL-3850 fixed full class name --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 56140e6..ee7be0f 100644 --- a/build.gradle +++ b/build.gradle @@ -2949,8 +2949,8 @@ task jalviewjsServer { def factory try { - def class = Class.forName("SimpleHttpFileServerFactory") - factory = class.newInstance() + def f = Class.forName("org.gradle.plugins.javascript.envjs.http.simple.SimpleHttpFileServerFactory") + factory = f.newInstance() } catch (ClassNotFoundException e) { throw new GradleException("Unable to create SimpleHttpFileServerFactory") } -- 1.7.10.2