Hi Jacques,

JitPack is indeed a nice service and plugin. However I think it might not
be a good fit for the plugin system because:

- You're mixing up jar dependencies with components. OFBiz components are
not jars and do not require pre-compilation. The primary purpose of JitPack
is to build jars on demand if they are not available on public repos.
- it requires rewriting all components to allow publishing.
- it depends on a single vendor (vendor lock in)
- it requires service registration to use.
- it does not provide dependency management
- it is less flexible. Maven packages can contain anything and can be
hosted everywhere (localhost, jcenter, maven central, private maven, etc).

So not only is it not compatible with OFBiz components but also more
complex to use as described above.

Taher Alkhateeb

On Sep 9, 2016 12:31 AM, "Jacques Le Roux" <jacques.le.r...@les7arts.com>
wrote:

> Hi Taher,
>
> While working on notsoserial, I got an idea about using JitPack in
> conjunction with GitHub for OFBiz-Gradle plugins.
> JitPack has a MIT license and allows to freely use standard GitHub
> repositories (like https://github.com/apache/ofbiz)*.
> *
>
> When you use JitPackyou don't download jars but build jars in your Gradle
> cache from the sources on GitHub.
>
> For instance it was very easy for me to directly compile notsoserial (
> https://github.com/kantega/notsoserial they have a pom.xml there) and
> have the jar put in my Gradle cache.
>
> JitPack allows also to use private (but not free) repositories
> https://jitpack.io/private. This could maybe make sense to provide paid
> plugins. But because only a credential is needed to gain access, it's maybe
> not enough, you would have to create a paid repo by client.
>
> The FAQ is here https://github.com/jitpack/jitpack.io/blob/master/FAQ.md
>
> So it would be easier for us (OFBiz team) and contributors to deliver (at
> least free) plugins w/o having to publish then in a Maven or "Gradle"
> (jcenter) repository.
> A simple project in GitHub, done! When you know how GitHub changed the
> open source world it's IMO interesting, simple and efficient.
>
> Jacques
>
> Le 28/08/2016 à 18:41, Taher Alkhateeb a écrit :
>
>> Hi Everyone,
>>
>> I am very happy to announce that after a lot of research I finally have a
>> little working PoC solution for the OFBiz plugin system. I believe this
>> system is very simple yet very powerful with the following simple API
>> tasks
>>
>> 1- ./gradlew createPlugin: creates a plugin from templates
>> 2- ./gradlew installPlugin: downloads a plugin and all its dependency
>> plugins from a maven repository(it could be local, remote, jcenter,
>> whatever), extracts the archives, add the plugin to component-load.xml,
>> and
>> calls the install task.
>> 3- ./gradlew uninstallPlugin: calls the uninstall task, removes the plugin
>> from component-load.xml, and deletes the plugin (but ignores
>> dependencies).
>> 4- ./gradlew publishPlugin: create a maven compatible package that can be
>> published to either a local or a remote repository.
>>
>> So what is very powerful about this solution? Well, you use the maven
>> format for your packages, so you can host it on any maven repository
>> including jcenter. Also, you have a standard way of declaring dependencies
>> (pom.xml) and you pretty much gain all the benefits that comes with maven
>> packages (versioning, dependencies, meta data, etc ...)
>>
>> The solution can be expanded later on, but I think the above provides a
>> good starting point. Ideas? Feedback? Should I go ahead and fine-tune /
>> share the PoC on JIRA?
>>
>> Regards,
>>
>> Taher Alkhateeb
>>
>> On Fri, Aug 26, 2016 at 6:17 PM, Jacques Le Roux <
>> jacques.le.r...@les7arts.com> wrote:
>>
>> Le 25/08/2016 à 16:39, Taher Alkhateeb a écrit :
>>>
>>> Hello Everyone,
>>>>
>>>> I need some opinions for a PoC that I'm working on for the plugin system
>>>> (OFBIZ-7972) and appreciate your help:
>>>>
>>>> repository design
>>>> ----------------------
>>>> I am thinking of just having a very simple web server denoted as a
>>>> repository where the plugins are just zip or tar archives that expand to
>>>> OFBiz components. For example, if the repository URL is www.example.com
>>>> then the plugin could be www.example.com/plugins/Specif
>>>> icPluginHere.tar.gz.
>>>> It downloads to the specialpurpose (hopefully renamed to plugins) to
>>>> expand
>>>> and install
>>>>
>>>> I'm for removing the difference between specialpurpose and hot-deploy.
>>> Why? Simplification!
>>>
>>> We should remove specialpurpose and rename hot-deploy into plugins.
>>> This also means that we should have a Gradle task to automatically
>>> download and install a plugin.
>>> All current specialpurpose would become plugins available in the repo
>>> easily installable using something like
>>>      gradlew installPlugins plugins1Name plugins2Name etc.
>>> I don't see the need to have a differentiated task to install only 1
>>> plugin
>>>
>>> The repo should be installed on the new OFBIZ-VM2
>>>
>>> We know that, like for the misnamed hot-deploy, installing a plugin will
>>> need a restart of the OFBiz instance.
>>> So this can't be dynamically done (at least for now), but need to be at
>>> least automated.
>>>
>>> The only current issue is if we have dependencies among plugins.
>>> For now we can simply documented them for users to set their own
>>> component-load.xml
>>>
>>> BTW as a reminder, after OFBIZ-6760 we need to update
>>> https://cwiki.apache.org/confluence/display/OFBIZ/Component+
>>> and+Component+Set+Dependencies
>>> And possibly complete the possible existing interdependencies between
>>> specialpurpose components, though I can't remember any, but I feel I'm
>>> wrong here.
>>>
>>>
>>> dependencies
>>>
>>>> ------------------
>>>> This is a complicated subject, and there are a few ideas I have in mind:
>>>> - Try to deploy the gradle project dependency model
>>>>
>>>> I'd like to know if you crossed issues with that and if yes what they
>>> are.
>>> If it's the case can't we share the burden?
>>>
>>> - Alternatively write custom dependency resolution
>>> Please no :)
>>>
>>> However, this might be too complex to kickstart the project, and I think
>>>
>>>> perhaps we can start without a dependency management system and
>>>> implement
>>>> it in a later stage.
>>>>
>>>> Yes why not? Baby steps for the win
>>>
>>> Jacques
>>>
>>>
>>>
>>> Thank you in advance for your help and feedback.
>>>>
>>>> Taher Alkhateeb
>>>>
>>>>
>>>>
>

Reply via email to