From 842155d8872504790f93d4b446059108116a5179 Mon Sep 17 00:00:00 2001 From: "sergey.tolstyh" Date: Fri, 14 Apr 2023 16:47:45 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D0=BB=20?= =?UTF-8?q?=D0=B7=D0=B0=D0=B2=D0=B8=D1=81=D0=B8=D0=BC=D0=BE=D1=81=D1=82?= =?UTF-8?q?=D0=B8=20gen=20=D0=B8=20control?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.gradle | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 9854aa0..fc79b54 100644 --- a/build.gradle +++ b/build.gradle @@ -41,6 +41,8 @@ dependencies { provided 'javax.servlet:javax.servlet-api:3.1.0' testCompile 'org.junit.jupiter:junit-jupiter:5.8.2' + runtimeClasspath files(ncoreGenerateControlDataJar) + runtimeClasspath files(genJar) } // writing build process to a log file @@ -95,7 +97,7 @@ jar{ manifest{ attributes( 'Main-Class': 'biz.redsoft.ncore.client.MainForm', - 'Class-Path': configurations.runtimeClasspath.collect { it.name }.join(' ') + " ${ncoreGenerateControlDataJar.archiveName}" + 'Class-Path': configurations.runtimeClasspath.collect { it.name }.join(' ') ) } }