This is an automated email from the ASF dual-hosted git repository.

aleks pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract.git


The following commit(s) were added to refs/heads/develop by this push:
     new 2e8f01813 Static weaving classpath is tuned to conform with the system 
dependent path separator
2e8f01813 is described below

commit 2e8f018132cf2b913e86ee9cfdab69a7a3851308
Author: Arnold Galovics <[email protected]>
AuthorDate: Thu May 26 20:26:29 2022 +0200

    Static weaving classpath is tuned to conform with the system dependent path 
separator
---
 fineract-provider/build.gradle | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/fineract-provider/build.gradle b/fineract-provider/build.gradle
index 1d8f96ab7..2172b7a32 100644
--- a/fineract-provider/build.gradle
+++ b/fineract-provider/build.gradle
@@ -38,8 +38,8 @@ compileJava.doLast {
         description = 'Performs EclipseLink static weaving of entity classes'
         def target = source
         main 'org.eclipse.persistence.tools.weaving.jpa.StaticWeave'
-        args '-persistenceinfo', source, '-classpath', 
configurations.runtimeClasspath, source, target
-        classpath configurations.runtimeClasspath
+        args '-persistenceinfo', source, '-classpath', 
sourceSets.main.runtimeClasspath, source, target
+        classpath sourceSets.main.runtimeClasspath
     }
     delete {
         delete "${source}/META-INF/persistence.xml"

Reply via email to