Re: how to add repository for plugin dependency? how to plugins using private repositories?

2021-06-22 Thread Michael Brohl
Hi Stan, I think this should be a change/mod in your custom repository. We should not add custom dependencies to the build file which are not used by the project itself. Best regards, Michael Am 22.06.21 um 10:58 schrieb Eugen Stan: Hello Jacques, I've created an issue and a PR for

Re: how to add repository for plugin dependency? how to plugins using private repositories?

2021-06-22 Thread Eugen Stan
Hello Jacques, I've created an issue and a PR for this https://issues.apache.org/jira/browse/OFBIZ-12263 . https://github.com/apache/ofbiz-framework/pull/304/files I did some research and the current solution for building plugin - that depend on source does not allow us to declare

Re: how to add repository for plugin dependency? how to plugins using private repositories?

2021-06-17 Thread Eugen Stan
Hi Jacques, Tried and looked but no success unless I add directly to ofbiz-framework/build.gradle . Probably those plugins have all dependenices on maven central or the others repo. I updated my ofbiz-clojure-repl plugin but I can't build it unless I add clojars repo. Without the

Re: how to add repository for plugin dependency? how to plugins using private repositories?

2021-06-17 Thread Jacques Le Roux
Hi Eugen, I'm not sure it's what you are looking for but you may have a look at build.gradle files that you can fins in some plugins, eg https://github.com/apache/ofbiz-plugins/blob/trunk/birt/build.gradle HTH Jacques Le 17/06/2021 à 06:58, Eugen Stan a écrit : Hello, How can I add a maven

how to add repository for plugin dependency? how to plugins using private repositories?

2021-06-16 Thread Eugen Stan
Hello, How can I add a maven repository for plugin dependencies? My plugin depends on a library that is published on clojars.org . I could add the repo to main ofbiz-frameweork build.gradle but that would work only for me and I don't expect this to work for private dependencies. How does