[jira] [Commented] (OFBIZ-10368) Implement Depends on support for Component Loading.

2018-09-06 Thread Deepak Dixit (JIRA)


[ 
https://issues.apache.org/jira/browse/OFBIZ-10368?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16605486#comment-16605486
 ] 

Deepak Dixit commented on OFBIZ-10368:
--

I prefert to craete new jira, as this task is complete

I'll create new one. 

> Implement Depends on support for Component Loading.
> ---
>
> Key: OFBIZ-10368
> URL: https://issues.apache.org/jira/browse/OFBIZ-10368
> Project: OFBiz
>  Issue Type: New Feature
>  Components: framework
>Affects Versions: Trunk
>Reporter: Pradhan Yash Sharma
>Assignee: Jacques Le Roux
>Priority: Minor
> Fix For: Upcoming Branch
>
> Attachments: OFBIZ-10368.patch
>
>
> Components are loaded in the order they are found (i.e. alphabetic or 
> creation date). This can be altered. We have a pending feature support for 
> ofbiz-component, for creating a series of dependency for component loading, 
> before loading a particular component.
>  
> Here we can define dependency for a component like Component ebaystore is 
> dependent on Component ebay (even multiple dependencies for a single 
> component is also supported). We can declare it in this fashion in 
> ofbiz-component.xml file.
>  
> {code:java}
>  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance;
> xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/ofbiz-component.xsd;>
> {code}
>  
> Now we can declare dependency and if any anomaly is found loading of 
> components will stop.  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (OFBIZ-10368) Implement Depends on support for Component Loading.

2018-09-06 Thread Jacques Le Roux (JIRA)


[ 
https://issues.apache.org/jira/browse/OFBIZ-10368?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16605478#comment-16605478
 ] 

Jacques Le Roux commented on OFBIZ-10368:
-

Hi Deepak,

Do you prefer to reopen here or create a new Jira?

> Implement Depends on support for Component Loading.
> ---
>
> Key: OFBIZ-10368
> URL: https://issues.apache.org/jira/browse/OFBIZ-10368
> Project: OFBiz
>  Issue Type: New Feature
>  Components: framework
>Affects Versions: Trunk
>Reporter: Pradhan Yash Sharma
>Assignee: Jacques Le Roux
>Priority: Minor
> Fix For: Upcoming Branch
>
> Attachments: OFBIZ-10368.patch
>
>
> Components are loaded in the order they are found (i.e. alphabetic or 
> creation date). This can be altered. We have a pending feature support for 
> ofbiz-component, for creating a series of dependency for component loading, 
> before loading a particular component.
>  
> Here we can define dependency for a component like Component ebaystore is 
> dependent on Component ebay (even multiple dependencies for a single 
> component is also supported). We can declare it in this fashion in 
> ofbiz-component.xml file.
>  
> {code:java}
>  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance;
> xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/ofbiz-component.xsd;>
> {code}
>  
> Now we can declare dependency and if any anomaly is found loading of 
> components will stop.  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (OFBIZ-10368) Implement Depends on support for Component Loading.

2018-09-05 Thread Deepak Dixit (JIRA)


[ 
https://issues.apache.org/jira/browse/OFBIZ-10368?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16605294#comment-16605294
 ] 

Deepak Dixit commented on OFBIZ-10368:
--

Just an additional note,

It handles the component build dependencies, need to handle depends-on for data 
load container class as well

> Implement Depends on support for Component Loading.
> ---
>
> Key: OFBIZ-10368
> URL: https://issues.apache.org/jira/browse/OFBIZ-10368
> Project: OFBiz
>  Issue Type: New Feature
>  Components: framework
>Affects Versions: Trunk
>Reporter: Pradhan Yash Sharma
>Assignee: Jacques Le Roux
>Priority: Minor
> Fix For: Upcoming Branch
>
> Attachments: OFBIZ-10368.patch
>
>
> Components are loaded in the order they are found (i.e. alphabetic or 
> creation date). This can be altered. We have a pending feature support for 
> ofbiz-component, for creating a series of dependency for component loading, 
> before loading a particular component.
>  
> Here we can define dependency for a component like Component ebaystore is 
> dependent on Component ebay (even multiple dependencies for a single 
> component is also supported). We can declare it in this fashion in 
> ofbiz-component.xml file.
>  
> {code:java}
>  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance;
> xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/ofbiz-component.xsd;>
> {code}
>  
> Now we can declare dependency and if any anomaly is found loading of 
> components will stop.  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (OFBIZ-10368) Implement Depends on support for Component Loading.

2018-08-26 Thread Jacques Le Roux (JIRA)


[ 
https://issues.apache.org/jira/browse/OFBIZ-10368?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16592866#comment-16592866
 ] 

Jacques Le Roux commented on OFBIZ-10368:
-

Hi Yash,

OK, it seems I need to handle ofbiz-component.xsd by myslelf :/ ?

> Implement Depends on support for Component Loading.
> ---
>
> Key: OFBIZ-10368
> URL: https://issues.apache.org/jira/browse/OFBIZ-10368
> Project: OFBiz
>  Issue Type: New Feature
>  Components: framework
>Affects Versions: Trunk
>Reporter: Pradhan Yash Sharma
>Assignee: Jacques Le Roux
>Priority: Minor
> Fix For: Trunk
>
> Attachments: OFBIZ-10368.patch
>
>
> Components are loaded in the order they are found (i.e. alphabetic or 
> creation date). This can be altered. We have a pending feature support for 
> ofbiz-component, for creating a series of dependency for component loading, 
> before loading a particular component.
>  
> Here we can define dependency for a component like Component ebaystore is 
> dependent on Component ebay (even multiple dependencies for a single 
> component is also supported). We can declare it in this fashion in 
> ofbiz-component.xml file.
>  
> {code:java}
>  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance;
> xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/ofbiz-component.xsd;>
> {code}
>  
> Now we can declare dependency and if any anomaly is found loading of 
> components will stop.  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (OFBIZ-10368) Implement Depends on support for Component Loading.

2018-08-19 Thread Jacques Le Roux (JIRA)


[ 
https://issues.apache.org/jira/browse/OFBIZ-10368?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16585103#comment-16585103
 ] 

Jacques Le Roux commented on OFBIZ-10368:
-

Hi Yash,

Any chances?

> Implement Depends on support for Component Loading.
> ---
>
> Key: OFBIZ-10368
> URL: https://issues.apache.org/jira/browse/OFBIZ-10368
> Project: OFBiz
>  Issue Type: New Feature
>  Components: framework
>Affects Versions: Trunk
>Reporter: Pradhan Yash Sharma
>Assignee: Jacques Le Roux
>Priority: Minor
> Fix For: Trunk
>
> Attachments: OFBIZ-10368.patch
>
>
> Components are loaded in the order they are found (i.e. alphabetic or 
> creation date). This can be altered. We have a pending feature support for 
> ofbiz-component, for creating a series of dependency for component loading, 
> before loading a particular component.
>  
> Here we can define dependency for a component like Component ebaystore is 
> dependent on Component ebay (even multiple dependencies for a single 
> component is also supported). We can declare it in this fashion in 
> ofbiz-component.xml file.
>  
> {code:java}
>  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance;
> xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/ofbiz-component.xsd;>
> {code}
>  
> Now we can declare dependency and if any anomaly is found loading of 
> components will stop.  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (OFBIZ-10368) Implement Depends on support for Component Loading.

2018-08-10 Thread Jacques Le Roux (JIRA)


[ 
https://issues.apache.org/jira/browse/OFBIZ-10368?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16576338#comment-16576338
 ] 

Jacques Le Roux commented on OFBIZ-10368:
-

Hi Yash,

This works well and I'm ready to commit. We just need to update 
ofbiz-component.xsd

BTW ebaystore is not a good example, this plugin is disabled ;)

> Implement Depends on support for Component Loading.
> ---
>
> Key: OFBIZ-10368
> URL: https://issues.apache.org/jira/browse/OFBIZ-10368
> Project: OFBiz
>  Issue Type: New Feature
>  Components: framework
>Affects Versions: Trunk
>Reporter: Pradhan Yash Sharma
>Assignee: Jacques Le Roux
>Priority: Minor
> Fix For: Trunk
>
> Attachments: OFBIZ-10368.patch
>
>
> Components are loaded in the order they are found (i.e. alphabetic or 
> creation date). This can be altered. We have a pending feature support for 
> ofbiz-component, for creating a series of dependency for component loading, 
> before loading a particular component.
>  
> Here we can define dependency for a component like Component ebaystore is 
> dependent on Component ebay (even multiple dependencies for a single 
> component is also supported). We can declare it in this fashion in 
> ofbiz-component.xml file.
>  
> {code:java}
>  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance;
> xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/ofbiz-component.xsd;>
> {code}
>  
> Now we can declare dependency and if any anomaly is found loading of 
> components will stop.  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (OFBIZ-10368) Implement Depends on support for Component Loading.

2018-07-17 Thread Deepak Dixit (JIRA)


[ 
https://issues.apache.org/jira/browse/OFBIZ-10368?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16546088#comment-16546088
 ] 

Deepak Dixit commented on OFBIZ-10368:
--

Looks good to me, need to handle this depends-on for data load container class 
as well. 

> Implement Depends on support for Component Loading.
> ---
>
> Key: OFBIZ-10368
> URL: https://issues.apache.org/jira/browse/OFBIZ-10368
> Project: OFBiz
>  Issue Type: New Feature
>  Components: framework
>Affects Versions: Trunk
>Reporter: Pradhan Yash Sharma
>Assignee: Jacques Le Roux
>Priority: Minor
> Fix For: Trunk
>
> Attachments: OFBIZ-10368.patch
>
>
> Components are loaded in the order they are found (i.e. alphabetic or 
> creation date). This can be altered. We have a pending feature support for 
> ofbiz-component, for creating a series of dependency for component loading, 
> before loading a particular component.
>  
> Here we can define dependency for a component like Component ebaystore is 
> dependent on Component ebay (even multiple dependencies for a single 
> component is also supported). We can declare it in this fashion in 
> ofbiz-component.xml file.
>  
> {code:java}
>  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance;
> xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/ofbiz-component.xsd;>
> {code}
>  
> Now we can declare dependency and if any anomaly is found loading of 
> components will stop.  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (OFBIZ-10368) Implement Depends on support for Component Loading.

2018-06-23 Thread Arun Patidar (JIRA)


[ 
https://issues.apache.org/jira/browse/OFBIZ-10368?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16521039#comment-16521039
 ] 

Arun Patidar commented on OFBIZ-10368:
--

+1, nice idea. But did not tested the feature locally.

> Implement Depends on support for Component Loading.
> ---
>
> Key: OFBIZ-10368
> URL: https://issues.apache.org/jira/browse/OFBIZ-10368
> Project: OFBiz
>  Issue Type: New Feature
>  Components: framework
>Affects Versions: Trunk
>Reporter: Pradhan Yash Sharma
>Priority: Minor
> Fix For: Trunk
>
> Attachments: OFBIZ-10368.patch
>
>
> Components are loaded in the order they are found (i.e. alphabetic or 
> creation date). This can be altered. We have a pending feature support for 
> ofbiz-component, for creating a series of dependency for component loading, 
> before loading a particular component.
>  
> Here we can define dependency for a component like Component ebaystore is 
> dependent on Component ebay (even multiple dependencies for a single 
> component is also supported). We can declare it in this fashion in 
> ofbiz-component.xml file.
>  
> {code:java}
>  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance;
> xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/ofbiz-component.xsd;>
> {code}
>  
> Now we can declare dependency and if any anomaly is found loading of 
> components will stop.  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (OFBIZ-10368) Implement Depends on support for Component Loading.

2018-05-02 Thread Jacques Le Roux (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-10368?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16460787#comment-16460787
 ] 

Jacques Le Roux commented on OFBIZ-10368:
-

+1, I did not review nor tested but I like the idea

> Implement Depends on support for Component Loading.
> ---
>
> Key: OFBIZ-10368
> URL: https://issues.apache.org/jira/browse/OFBIZ-10368
> Project: OFBiz
>  Issue Type: New Feature
>  Components: framework
>Affects Versions: Trunk
>Reporter: Pradhan Yash Sharma
>Priority: Minor
> Fix For: Trunk
>
> Attachments: OFBIZ-10368.patch
>
>
> Components are loaded in the order they are found (i.e. alphabetic or 
> creation date). This can be altered. We have a pending feature support for 
> ofbiz-component, for creating a series of dependency for component loading, 
> before loading a particular component.
>  
> Here we can define dependency for a component like Component ebaystore is 
> dependent on Component ebay (even multiple dependencies for a single 
> component is also supported). We can declare it in this fashion in 
> ofbiz-component.xml file.
>  
> {code:java}
>  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance;
> xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/ofbiz-component.xsd;>
> {code}
>  
> Now we can declare dependency and if any anomaly is found loading of 
> components will stop.  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)