Re: [osgi-dev] OSGi enRoute Maven Testers wanted ...

2016-11-12 Thread Daghan ACAY
Hi Christian,


I guess I found a bug []


your suggestion works if bndrun file *has a* "-runbundles:" entry. value can be 
empty or some other value.


However, if there is a value from the previous build and you add a new 
"-runrequires" and do a build "-runrequires" entry is replaced by the 
additional runbundles instead of union of the required bundles. Every time you 
do a build it oscillates between the dependencies. here is how you can 
reproduce it:



-runrequires: \
osgi.identity;filter:='(osgi.identity=osgi.enroute.examples.eval.simple.provider)',\


-runbundles: {intentially empty}


then run mvn install with the  configuration below, then you get


-runrequires:  \
osgi.identity;filter:='(osgi.identity=osgi.enroute.examples.eval.simple.provider)',\


-runbundles: \
org.apache.felix.configadmin;version='[1.8.8,1.8.9)',\
org.apache.felix.log;version='[1.0.1,1.0.2)',\
org.apache.felix.scr;version='[2.0.2,2.0.3)',\
org.eclipse.equinox.metatype;version='[1.4.100,1.4.101)',\
org.osgi.service.metatype;version='[1.3.0,1.3.1)',\
osgi.enroute.examples.eval.simple.provider;version='[1.0.0,1.0.1)'


now change the runrequires as follows


-runrequires: \
osgi.identity;filter:='(osgi.identity=osgi.enroute.examples.eval.simple.provider)',\
osgi.identity;filter:='(osgi.identity=osgi.enroute.gogo.shell.provider)'

And run mvn install again, you will get

-runbundles: \
org.apache.felix.gogo.runtime;version='[0.16.2,0.16.3)',\
osgi.enroute.gogo.shell.provider;version='[2.0.0,2.0.1)'

If you run mvn install at this stage without making any change then the run 
bundles will look like the previous build, i.e.

-runbundles: \
org.apache.felix.configadmin;version='[1.8.8,1.8.9)',\
org.apache.felix.log;version='[1.0.1,1.0.2)',\
org.apache.felix.scr;version='[2.0.2,2.0.3)',\
org.eclipse.equinox.metatype;version='[1.4.100,1.4.101)',\
org.osgi.service.metatype;version='[1.3.0,1.3.1)',\
osgi.enroute.examples.eval.simple.provider;version='[1.0.0,1.0.1)'

To get the *union* of resolutions then you need to clean the "-runbundles" and 
run mvn install again, i.e.

-runbundles: \
org.apache.felix.configadmin;version='[1.8.8,1.8.9)',\
org.apache.felix.gogo.runtime;version='[0.16.2,0.16.3)',\
org.apache.felix.log;version='[1.0.1,1.0.2)',\
org.apache.felix.scr;version='[2.0.2,2.0.3)',\
org.eclipse.equinox.metatype;version='[1.4.100,1.4.101)',\
org.osgi.service.metatype;version='[1.3.0,1.3.1)',\
osgi.enroute.examples.eval.simple.provider;version='[1.0.0,1.0.1)',\
osgi.enroute.gogo.shell.provider;version='[2.0.0,2.0.1)'

It think this is a bug and quite dangerous since it will break the runtime 
aggregation and will make many people lose a lot hours trying to debug the 
problem.

Cheers
-Daghan




From: osgi-dev-boun...@mail.osgi.org <osgi-dev-boun...@mail.osgi.org> on behalf 
of Daghan ACAY <daghana...@hotmail.com>
Sent: Sunday, November 13, 2016 6:26 AM
To: OSGi Developer Mail List
Subject: Re: [osgi-dev] OSGi enRoute Maven Testers wanted ...


Hi Christian,


I tried your suggestion inside the bndrun project as follows:





biz.aQute.bnd
bnd-export-maven-plugin
3.4.0-SNAPSHOT

true
false

osgi.enroute.examples.eval.bndrun

.




export








The following still gives the same error

bndrun $  mvn install

Result:

[INFO] --- bnd-export-maven-plugin:3.4.0-SNAPSHOT:export (default) @ 
osgi.enroute.examples.eval.bndrun ---

-runbundles: \
org.apache.felix.configadmin; version='[1.8.8,1.8.9)',\
org.apache.felix.log; version='[1.0.1,1.0.2)',\
org.apache.felix.scr; version='[2.0.2,2.0.3)',\
org.eclipse.equinox.metatype; version='[1.4.100,1.4.101)',\
org.osgi.service.metatype; version='[1.3.0,1.3.1)',\
osgi.enroute.examples.eval.simple.provider; version='[1.0.0,1.0.1)'

am I missing something?

Cheers
-Daghan




From: osgi-dev-boun...@mail.osgi.org <osgi-dev-boun...@mail.osgi.org> on behalf 
of Christian Schneider <ch...@die-schneider.net>
Sent: Thursday, October 13, 2016 8:38 AM
To: OSGi Developer Mail List
Subject: Re: [osgi-dev] OSGi enRoute Maven Testers wanted ...

Hi Daghan,

I think I can answer part of your questions.

Christian

On 12.10.2016 23:27, Daghan ACAY wrote:
>
> 2- how is bndtool resolution and hot deploy from eclipse affected?
> Should we still resolve bndrun in eclipse?
>
You can still resolve using the UI. But you can also do a pure maven build.
Hot deploy does not work reliably. You have to at least do mvn install
on the module you changed and restart your OSGi runtime.
>
> 3- as a suggestion breaking a build and copy pasting will not work in
> ci/cd. I think a more automated solution can be beneficial.
>
You can use this configuration to make the resolve completely automated

   true
   false


--
Christian Schneider
http://www.liquid-reality.de
Liquid Reality - Christian Schneider's Blog - Liquid 
Reality<http://www.liquid-reality.de/>
www.l

Re: [osgi-dev] OSGi enRoute Maven Testers wanted ...

2016-11-12 Thread Daghan ACAY
Hi Christian,


I tried your suggestion inside the bndrun project as follows:





biz.aQute.bnd
bnd-export-maven-plugin
3.4.0-SNAPSHOT

true
false

osgi.enroute.examples.eval.bndrun

.




export








The following still gives the same error

bndrun $  mvn install

Result:

[INFO] --- bnd-export-maven-plugin:3.4.0-SNAPSHOT:export (default) @ 
osgi.enroute.examples.eval.bndrun ---

-runbundles: \
org.apache.felix.configadmin; version='[1.8.8,1.8.9)',\
org.apache.felix.log; version='[1.0.1,1.0.2)',\
org.apache.felix.scr; version='[2.0.2,2.0.3)',\
org.eclipse.equinox.metatype; version='[1.4.100,1.4.101)',\
org.osgi.service.metatype; version='[1.3.0,1.3.1)',\
osgi.enroute.examples.eval.simple.provider; version='[1.0.0,1.0.1)'

am I missing something?

Cheers
-Daghan




From: osgi-dev-boun...@mail.osgi.org <osgi-dev-boun...@mail.osgi.org> on behalf 
of Christian Schneider <ch...@die-schneider.net>
Sent: Thursday, October 13, 2016 8:38 AM
To: OSGi Developer Mail List
Subject: Re: [osgi-dev] OSGi enRoute Maven Testers wanted ...

Hi Daghan,

I think I can answer part of your questions.

Christian

On 12.10.2016 23:27, Daghan ACAY wrote:
>
> 2- how is bndtool resolution and hot deploy from eclipse affected?
> Should we still resolve bndrun in eclipse?
>
You can still resolve using the UI. But you can also do a pure maven build.
Hot deploy does not work reliably. You have to at least do mvn install
on the module you changed and restart your OSGi runtime.
>
> 3- as a suggestion breaking a build and copy pasting will not work in
> ci/cd. I think a more automated solution can be beneficial.
>
You can use this configuration to make the resolve completely automated

   true
   false


--
Christian Schneider
http://www.liquid-reality.de
Liquid Reality - Christian Schneider's Blog - Liquid 
Reality<http://www.liquid-reality.de/>
www.liquid-reality.de
Apache karaf is an open source OSGi server developed by the Apache foundation. 
It provides very convenient management functionality on top of existing OSGi 
frameworks.




Open Source Architect
http://www.talend.com
[http://upload.wikimedia.org/wikipedia/en/2/21/Talend_logo.png]<http://www.talend.com/>

Talend Real-Time Open Source Data Integration Software<http://www.talend.com/>
www.talend.com
Talend open source integration software products offer real-time solutions for 
all types of data integration. Learn more about the benefits of Hadoop and 
Spark.




___
OSGi Developer Mail List
osgi-dev@mail.osgi.org
https://mail.osgi.org/mailman/listinfo/osgi-dev
___
OSGi Developer Mail List
osgi-dev@mail.osgi.org
https://mail.osgi.org/mailman/listinfo/osgi-dev

Re: [osgi-dev] OSGi enRoute Maven Testers wanted ...

2016-11-04 Thread Elliot Huntington
Peter Kriens
> >
> >> On 2 nov. 2016, at 06:07, Elliot Huntington <
> elliot.hunting...@gmail.com> wrote:
> >>
> >> I've been working through this tutorial tonight and everything works as
> explained until I get to step 8: A Web Application. When I try to open the
> web application in the browser (http://localhost:8080/osgi.
> enroute.examples.eval) an exception is thrown:
> >>
> >> osgi.enroute.web.server.exceptions.NotFound404Exception
> >> at osgi.enroute.web.server.provider.WebresourceServlet.
> doGet(WebresourceServlet.java:221)
> >> at javax.servlet.http.HttpServlet.service(HttpServlet.java:618)
> >> at javax.servlet.http.HttpServlet.service(HttpServlet.java:725)
> >> at org.apache.felix.http.base.internal.handler.
> ServletHandler.handle(ServletHandler.java:85)
> >> at org.apache.felix.http.base.internal.dispatch.
> InvocationChain.doFilter(InvocationChain.java:79)
> >> at org.apache.felix.http.base.internal.dispatch.Dispatcher.
> dispatch(Dispatcher.java:124)
> >> at org.apache.felix.http.base.internal.DispatcherServlet.
> service(DispatcherServlet.java:61)
> >> at javax.servlet.http.HttpServlet.service(HttpServlet.java:725)
> >> at org.eclipse.jetty.servlet.ServletHolder.handle(
> ServletHolder.java:845)
> >> at org.eclipse.jetty.servlet.ServletHandler.doHandle(
> ServletHandler.java:583)
> >> at org.eclipse.jetty.server.session.SessionHandler.
> doHandle(SessionHandler.java:224)
> >> at org.eclipse.jetty.server.handler.ContextHandler.
> doHandle(ContextHandler.java:1160)
> >> at org.eclipse.jetty.servlet.ServletHandler.doScope(
> ServletHandler.java:511)
> >> at org.eclipse.jetty.server.session.SessionHandler.
> doScope(SessionHandler.java:185)
> >> at org.eclipse.jetty.server.handler.ContextHandler.
> doScope(ContextHandler.java:1092)
> >> at org.eclipse.jetty.server.handler.ScopedHandler.handle(
> ScopedHandler.java:141)
> >> at org.eclipse.jetty.server.handler.ContextHandlerCollection.
> handle(ContextHandlerCollection.java:213)
> >> at org.eclipse.jetty.server.handler.HandlerWrapper.handle(
> HandlerWrapper.java:134)
> >> at org.eclipse.jetty.server.Server.handle(Server.java:518)
> >> at org.eclipse.jetty.server.HttpChannel.handle(
> HttpChannel.java:308)
> >> at org.eclipse.jetty.server.HttpConnection.onFillable(
> HttpConnection.java:244)
> >> at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(
> AbstractConnection.java:273)
> >> at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:95)
> >> at org.eclipse.jetty.io.SelectChannelEndPoint$2.run(
> SelectChannelEndPoint.java:93)
> >> at org.eclipse.jetty.util.thread.strategy.ExecuteProduceConsume.
> produceAndRun(ExecuteProduceConsume.java:246)
> >> at org.eclipse.jetty.util.thread.strategy.
> ExecuteProduceConsume.run(ExecuteProduceConsume.java:156)
> >> at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(
> QueuedThreadPool.java:654)
> >> at org.eclipse.jetty.util.thread.QueuedThreadPool$3.run(
> QueuedThreadPool.java:572)
> >> at java.lang.Thread.run(Thread.java:745)
> >>
> >> I think this might have something to do with this part of the tutorial:
> >>
> >> --
> >> The Javascript Code
> >>
> >> The Javascript code must be placed in a directory in the
> src/resources/main/web.
> >> Any content in this directory is treated as a web resource and
> automatically
> >> included in the index.html page. The name of the files is irrelevant
> but the extension
> >> is since the selection in the index.html file takes place on extension.
> >>
> >> application $ mkdir -p src/main/resources/web
> >>
> >> main.js
> >>
> >> application $ vi src/main/resources/web/main.js
> >> // add the content
> >> 
> >>
> >> I tried placing the main.js file in each location highlighted in bold
> but I got the same error regardless of where I put the file. The error
> isn't explicit regarding which resource is not found, so I don't know how
> to proceed.
> >>
> >> I posted the project on my github account for an exact reference to see
> if I made any mistakes. Any help resolving this issue will be greatly
> appreciated.
> >>
> >> https://github.com/axiopisty/osgi-enroute-maven-tutorial
> >>
> >> Thank you,
> >> Elliot
> >>
> >> On Thu

Re: [osgi-dev] OSGi enRoute Maven Testers wanted ...

2016-11-04 Thread Peter Kriens
ty.server.handler.ContextHandler.doHandle(ContextHandler.java:1160)
>> at 
>> org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:511)
>> at 
>> org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:185)
>> at 
>> org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1092)
>> at 
>> org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141)
>> at 
>> org.eclipse.jetty.server.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:213)
>> at 
>> org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:134)
>> at org.eclipse.jetty.server.Server.handle(Server.java:518)
>> at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:308)
>> at 
>> org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:244)
>> at 
>> org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:273)
>> at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:95)
>> at 
>> org.eclipse.jetty.io.SelectChannelEndPoint$2.run(SelectChannelEndPoint.java:93)
>> at 
>> org.eclipse.jetty.util.thread.strategy.ExecuteProduceConsume.produceAndRun(ExecuteProduceConsume.java:246)
>> at 
>> org.eclipse.jetty.util.thread.strategy.ExecuteProduceConsume.run(ExecuteProduceConsume.java:156)
>> at 
>> org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:654)
>> at 
>> org.eclipse.jetty.util.thread.QueuedThreadPool$3.run(QueuedThreadPool.java:572)
>> at java.lang.Thread.run(Thread.java:745)
>> 
>> I think this might have something to do with this part of the tutorial:
>> 
>> --
>> The Javascript Code
>> 
>> The Javascript code must be placed in a directory in the 
>> src/resources/main/web.
>> Any content in this directory is treated as a web resource and automatically
>> included in the index.html page. The name of the files is irrelevant but the 
>> extension
>> is since the selection in the index.html file takes place on extension.
>> 
>> application $ mkdir -p src/main/resources/web
>> 
>> main.js
>> 
>> application $ vi src/main/resources/web/main.js
>> // add the content
>> 
>> 
>> I tried placing the main.js file in each location highlighted in bold but I 
>> got the same error regardless of where I put the file. The error isn't 
>> explicit regarding which resource is not found, so I don't know how to 
>> proceed.
>> 
>> I posted the project on my github account for an exact reference to see if I 
>> made any mistakes. Any help resolving this issue will be greatly appreciated.
>> 
>> https://github.com/axiopisty/osgi-enroute-maven-tutorial
>> 
>> Thank you,
>> Elliot
>> 
>> On Thu, Oct 13, 2016 at 3:17 PM, Daghan ACAY <daghana...@hotmail.com> wrote:
>> Hi Christian,
>> 
>> I was quite happy with the auto deploy until now. I give you that sometimes 
>> it breaks when i do something fancy, e.g change code and save while stopped 
>> at debug point. But other than that it was quite solid.
>> 
>> On the other hand i had fair amount of problem when i refresh repositories. 
>> Sometimes for no reason projects in workspace gives compilation error and it 
>> takes multiple repository refreshes from bndtools menu in eclipse to get it 
>> recognizing distro and other repositories. But that is another bug report.
>> 
>> Thanks for the answers i am looking forward to get my hands on the code.
>> 
>> Cheers
>> Daghan
>> 
>> Sent by MailWise – See your emails as clean, short chats.
>> 
>> 
>> 
>>  Original Message 
>> From: Christian Schneider <ch...@die-schneider.net>
>> Sent: Thursday, October 13, 2016 07:38 PM
>> To: OSGi Developer Mail List <osgi-dev@mail.osgi.org>
>> Subject: Re: [osgi-dev] OSGi enRoute Maven Testers wanted ...
>> 
>> Hi Daghan,
>> 
>> I think I can answer part of your questions.
>> 
>> Christian
>> 
>> On 12.10.2016 23:27, Daghan ACAY wrote:
>> >
>> > 2- how is bndtool resolution and hot deploy from eclipse affected? 
>> > Should we still resolve bndrun in eclipse?
>> >
>> You can still resolve using the UI. But you can also do a pure maven build.
>> Hot deploy does not work reliably. You have to at least do mvn install 
>> on the module you changed and restart your OSGi runtime.
>> 

Re: [osgi-dev] OSGi enRoute Maven Testers wanted ...

2016-11-04 Thread Elliot Huntington
pse.jetty.util.thread.QueuedThreadPool$3.run(QueuedT
>>> hreadPool.java:572)
>>> at java.lang.Thread.run(Thread.java:745)
>>>
>>> I think this might have something to do with this part of the tutorial:
>>>
>>> --
>>>
>>> The Javascript Code
>>>
>>> The Javascript code must be placed in a directory in the 
>>> *src/resources/main/web*.
>>> Any content in this directory is treated as a web resource and automatically
>>> included in the index.html page. The name of the files is irrelevant but 
>>> the extension
>>> is since the selection in the index.html file takes place on extension.
>>>
>>> application $ mkdir -p *src/main/resources/web*
>>>
>>> main.js
>>>
>>> application $ vi src/main/resources/web/main.js
>>> // add the content
>>>
>>> 
>>>
>>> I tried placing the main.js file in each location highlighted in bold
>>> but I got the same error regardless of where I put the file. The error
>>> isn't explicit regarding which resource is not found, so I don't know how
>>> to proceed.
>>>
>>> I posted the project on my github account for an exact reference to see
>>> if I made any mistakes. Any help resolving this issue will be greatly
>>> appreciated.
>>>
>>> https://github.com/axiopisty/osgi-enroute-maven-tutorial
>>>
>>> Thank you,
>>> Elliot
>>>
>>> On Thu, Oct 13, 2016 at 3:17 PM, Daghan ACAY <daghana...@hotmail.com>
>>> wrote:
>>>
>>>> Hi Christian,
>>>>
>>>> I was quite happy with the auto deploy until now. I give you that
>>>> sometimes it breaks when i do something fancy, e.g change code and save
>>>> while stopped at debug point. But other than that it was quite solid.
>>>>
>>>> On the other hand i had fair amount of problem when i refresh
>>>> repositories. Sometimes for no reason projects in workspace gives
>>>> compilation error and it takes multiple repository refreshes from bndtools
>>>> menu in eclipse to get it recognizing distro and other repositories. But
>>>> that is another bug report.
>>>>
>>>> Thanks for the answers i am looking forward to get my hands on the
>>>> code.
>>>>
>>>> Cheers
>>>> Daghan
>>>>
>>>> Sent by MailWise <http://www.mail-wise.com/installation/2> – See your
>>>> emails as clean, short chats.
>>>>
>>>>
>>>>  Original Message 
>>>> From: Christian Schneider <ch...@die-schneider.net>
>>>> Sent: Thursday, October 13, 2016 07:38 PM
>>>> To: OSGi Developer Mail List <osgi-dev@mail.osgi.org>
>>>> Subject: Re: [osgi-dev] OSGi enRoute Maven Testers wanted ...
>>>>
>>>> Hi Daghan,
>>>>
>>>> I think I can answer part of your questions.
>>>>
>>>> Christian
>>>>
>>>> On 12.10.2016 23:27, Daghan ACAY wrote:
>>>> >
>>>> > 2- how is bndtool resolution and hot deploy from eclipse affected?
>>>> > Should we still resolve bndrun in eclipse?
>>>> >
>>>> You can still resolve using the UI. But you can also do a pure maven
>>>> build.
>>>> Hot deploy does not work reliably. You have to at least do mvn install
>>>> on the module you changed and restart your OSGi runtime.
>>>> >
>>>> > 3- as a suggestion breaking a build and copy pasting will not work in
>>>> > ci/cd. I think a more automated solution can be beneficial.
>>>> >
>>>> You can use this configuration to make the resolve completely automated
>>>> 
>>>>true
>>>>false
>>>> 
>>>>
>>>> --
>>>> Christian Schneider
>>>> http://www.liquid-reality.de
>>>>
>>>> Open Source Architect
>>>> http://www.talend.com
>>>>
>>>> ___
>>>> OSGi Developer Mail List
>>>> osgi-dev@mail.osgi.org
>>>> https://mail.osgi.org/mailman/listinfo/osgi-dev
>>>>
>>>> ___
>>>> OSGi Developer Mail List
>>>> osgi-dev@mail.osgi.org
>>>> https://mail.osgi.org/mailman/listinfo/osgi-dev
>>>>
>>>
>>> ___
>>> OSGi Developer Mail List
>>> osgi-dev@mail.osgi.org
>>> https://mail.osgi.org/mailman/listinfo/osgi-dev
>>>
>>>
>>>
>>> ___
>>> OSGi Developer Mail List
>>> osgi-dev@mail.osgi.org
>>> https://mail.osgi.org/mailman/listinfo/osgi-dev
>>>
>>
>>
>
___
OSGi Developer Mail List
osgi-dev@mail.osgi.org
https://mail.osgi.org/mailman/listinfo/osgi-dev

Re: [osgi-dev] OSGi enRoute Maven Testers wanted ...

2016-11-03 Thread Elliot Huntington
rc/main/resources/web*
>>
>> main.js
>>
>> application $ vi src/main/resources/web/main.js
>> // add the content
>>
>> 
>>
>> I tried placing the main.js file in each location highlighted in bold but
>> I got the same error regardless of where I put the file. The error isn't
>> explicit regarding which resource is not found, so I don't know how to
>> proceed.
>>
>> I posted the project on my github account for an exact reference to see
>> if I made any mistakes. Any help resolving this issue will be greatly
>> appreciated.
>>
>> https://github.com/axiopisty/osgi-enroute-maven-tutorial
>>
>> Thank you,
>> Elliot
>>
>> On Thu, Oct 13, 2016 at 3:17 PM, Daghan ACAY <daghana...@hotmail.com>
>> wrote:
>>
>>> Hi Christian,
>>>
>>> I was quite happy with the auto deploy until now. I give you that
>>> sometimes it breaks when i do something fancy, e.g change code and save
>>> while stopped at debug point. But other than that it was quite solid.
>>>
>>> On the other hand i had fair amount of problem when i refresh
>>> repositories. Sometimes for no reason projects in workspace gives
>>> compilation error and it takes multiple repository refreshes from bndtools
>>> menu in eclipse to get it recognizing distro and other repositories. But
>>> that is another bug report.
>>>
>>> Thanks for the answers i am looking forward to get my hands on the code.
>>>
>>> Cheers
>>> Daghan
>>>
>>> Sent by MailWise <http://www.mail-wise.com/installation/2> – See your
>>> emails as clean, short chats.
>>>
>>>
>>>  Original Message 
>>> From: Christian Schneider <ch...@die-schneider.net>
>>> Sent: Thursday, October 13, 2016 07:38 PM
>>> To: OSGi Developer Mail List <osgi-dev@mail.osgi.org>
>>> Subject: Re: [osgi-dev] OSGi enRoute Maven Testers wanted ...
>>>
>>> Hi Daghan,
>>>
>>> I think I can answer part of your questions.
>>>
>>> Christian
>>>
>>> On 12.10.2016 23:27, Daghan ACAY wrote:
>>> >
>>> > 2- how is bndtool resolution and hot deploy from eclipse affected?
>>> > Should we still resolve bndrun in eclipse?
>>> >
>>> You can still resolve using the UI. But you can also do a pure maven
>>> build.
>>> Hot deploy does not work reliably. You have to at least do mvn install
>>> on the module you changed and restart your OSGi runtime.
>>> >
>>> > 3- as a suggestion breaking a build and copy pasting will not work in
>>> > ci/cd. I think a more automated solution can be beneficial.
>>> >
>>> You can use this configuration to make the resolve completely automated
>>> 
>>>true
>>>false
>>> 
>>>
>>> --
>>> Christian Schneider
>>> http://www.liquid-reality.de
>>>
>>> Open Source Architect
>>> http://www.talend.com
>>>
>>> ___
>>> OSGi Developer Mail List
>>> osgi-dev@mail.osgi.org
>>> https://mail.osgi.org/mailman/listinfo/osgi-dev
>>>
>>> ___
>>> OSGi Developer Mail List
>>> osgi-dev@mail.osgi.org
>>> https://mail.osgi.org/mailman/listinfo/osgi-dev
>>>
>>
>> ___
>> OSGi Developer Mail List
>> osgi-dev@mail.osgi.org
>> https://mail.osgi.org/mailman/listinfo/osgi-dev
>>
>>
>>
>> ___
>> OSGi Developer Mail List
>> osgi-dev@mail.osgi.org
>> https://mail.osgi.org/mailman/listinfo/osgi-dev
>>
>
>
___
OSGi Developer Mail List
osgi-dev@mail.osgi.org
https://mail.osgi.org/mailman/listinfo/osgi-dev

Re: [osgi-dev] OSGi enRoute Maven Testers wanted ...

2016-11-02 Thread Elliot Huntington
e.g change code and save
>> while stopped at debug point. But other than that it was quite solid.
>>
>> On the other hand i had fair amount of problem when i refresh
>> repositories. Sometimes for no reason projects in workspace gives
>> compilation error and it takes multiple repository refreshes from bndtools
>> menu in eclipse to get it recognizing distro and other repositories. But
>> that is another bug report.
>>
>> Thanks for the answers i am looking forward to get my hands on the code.
>>
>> Cheers
>> Daghan
>>
>> Sent by MailWise <http://www.mail-wise.com/installation/2> – See your
>> emails as clean, short chats.
>>
>>
>>  Original Message 
>> From: Christian Schneider <ch...@die-schneider.net>
>> Sent: Thursday, October 13, 2016 07:38 PM
>> To: OSGi Developer Mail List <osgi-dev@mail.osgi.org>
>> Subject: Re: [osgi-dev] OSGi enRoute Maven Testers wanted ...
>>
>> Hi Daghan,
>>
>> I think I can answer part of your questions.
>>
>> Christian
>>
>> On 12.10.2016 23:27, Daghan ACAY wrote:
>> >
>> > 2- how is bndtool resolution and hot deploy from eclipse affected?
>> > Should we still resolve bndrun in eclipse?
>> >
>> You can still resolve using the UI. But you can also do a pure maven
>> build.
>> Hot deploy does not work reliably. You have to at least do mvn install
>> on the module you changed and restart your OSGi runtime.
>> >
>> > 3- as a suggestion breaking a build and copy pasting will not work in
>> > ci/cd. I think a more automated solution can be beneficial.
>> >
>> You can use this configuration to make the resolve completely automated
>> 
>>true
>>false
>> 
>>
>> --
>> Christian Schneider
>> http://www.liquid-reality.de
>>
>> Open Source Architect
>> http://www.talend.com
>>
>> ___
>> OSGi Developer Mail List
>> osgi-dev@mail.osgi.org
>> https://mail.osgi.org/mailman/listinfo/osgi-dev
>>
>> ___
>> OSGi Developer Mail List
>> osgi-dev@mail.osgi.org
>> https://mail.osgi.org/mailman/listinfo/osgi-dev
>>
>
> ___
> OSGi Developer Mail List
> osgi-dev@mail.osgi.org
> https://mail.osgi.org/mailman/listinfo/osgi-dev
>
>
>
> ___
> OSGi Developer Mail List
> osgi-dev@mail.osgi.org
> https://mail.osgi.org/mailman/listinfo/osgi-dev
>
___
OSGi Developer Mail List
osgi-dev@mail.osgi.org
https://mail.osgi.org/mailman/listinfo/osgi-dev

Re: [osgi-dev] OSGi enRoute Maven Testers wanted ...

2016-11-02 Thread Peter Kriens
solid.
> 
> On the other hand i had fair amount of problem when i refresh repositories. 
> Sometimes for no reason projects in workspace gives compilation error and it 
> takes multiple repository refreshes from bndtools menu in eclipse to get it 
> recognizing distro and other repositories. But that is another bug report.
> 
> Thanks for the answers i am looking forward to get my hands on the code.
> 
> Cheers
> Daghan
> 
> Sent by MailWise <http://www.mail-wise.com/installation/2> – See your emails 
> as clean, short chats.
> 
> 
> 
>  Original Message 
> From: Christian Schneider <ch...@die-schneider.net 
> <mailto:ch...@die-schneider.net>>
> Sent: Thursday, October 13, 2016 07:38 PM
> To: OSGi Developer Mail List <osgi-dev@mail.osgi.org 
> <mailto:osgi-dev@mail.osgi.org>>
> Subject: Re: [osgi-dev] OSGi enRoute Maven Testers wanted ...
> 
> Hi Daghan,
> 
> I think I can answer part of your questions.
> 
> Christian
> 
> On 12.10.2016 23:27, Daghan ACAY wrote:
> >
> > 2- how is bndtool resolution and hot deploy from eclipse affected? 
> > Should we still resolve bndrun in eclipse?
> >
> You can still resolve using the UI. But you can also do a pure maven build.
> Hot deploy does not work reliably. You have to at least do mvn install 
> on the module you changed and restart your OSGi runtime.
> >
> > 3- as a suggestion breaking a build and copy pasting will not work in 
> > ci/cd. I think a more automated solution can be beneficial.
> >
> You can use this configuration to make the resolve completely automated
> 
>true
>false
> 
> 
> -- 
> Christian Schneider
> http://www.liquid-reality.de <http://www.liquid-reality.de/>
> 
> Open Source Architect
> http://www.talend.com <http://www.talend.com/>
> 
> ___
> OSGi Developer Mail List
> osgi-dev@mail.osgi.org <mailto:osgi-dev@mail.osgi.org>
> https://mail.osgi.org/mailman/listinfo/osgi-dev 
> <https://mail.osgi.org/mailman/listinfo/osgi-dev>
> 
> ___
> OSGi Developer Mail List
> osgi-dev@mail.osgi.org <mailto:osgi-dev@mail.osgi.org>
> https://mail.osgi.org/mailman/listinfo/osgi-dev 
> <https://mail.osgi.org/mailman/listinfo/osgi-dev>
> 
> ___
> OSGi Developer Mail List
> osgi-dev@mail.osgi.org
> https://mail.osgi.org/mailman/listinfo/osgi-dev



smime.p7s
Description: S/MIME cryptographic signature
___
OSGi Developer Mail List
osgi-dev@mail.osgi.org
https://mail.osgi.org/mailman/listinfo/osgi-dev

Re: [osgi-dev] OSGi enRoute Maven Testers wanted ...

2016-10-13 Thread Daghan ACAY
Hi Christian,

I was quite happy with the auto deploy until now. I give you that sometimes it 
breaks when i do something fancy, e.g change code and save while stopped at 
debug point. But other than that it was quite solid.

On the other hand i had fair amount of problem when i refresh repositories. 
Sometimes for no reason projects in workspace gives compilation error and it 
takes multiple repository refreshes from bndtools menu in eclipse to get it 
recognizing distro and other repositories. But that is another bug report.

Thanks for the answers i am looking forward to get my hands on the code.

Cheers
Daghan

Sent by MailWise<http://www.mail-wise.com/installation/2> – See your emails as 
clean, short chats.


 Original Message 
From: Christian Schneider <ch...@die-schneider.net>
Sent: Thursday, October 13, 2016 07:38 PM
To: OSGi Developer Mail List <osgi-dev@mail.osgi.org>
Subject: Re: [osgi-dev] OSGi enRoute Maven Testers wanted ...


Hi Daghan,

I think I can answer part of your questions.

Christian

On 12.10.2016 23:27, Daghan ACAY wrote:
>
> 2- how is bndtool resolution and hot deploy from eclipse affected?
> Should we still resolve bndrun in eclipse?
>
You can still resolve using the UI. But you can also do a pure maven build.
Hot deploy does not work reliably. You have to at least do mvn install
on the module you changed and restart your OSGi runtime.
>
> 3- as a suggestion breaking a build and copy pasting will not work in
> ci/cd. I think a more automated solution can be beneficial.
>
You can use this configuration to make the resolve completely automated

   true
   false


--
Christian Schneider
http://www.liquid-reality.de

Open Source Architect
http://www.talend.com

___
OSGi Developer Mail List
osgi-dev@mail.osgi.org
https://mail.osgi.org/mailman/listinfo/osgi-dev
___
OSGi Developer Mail List
osgi-dev@mail.osgi.org
https://mail.osgi.org/mailman/listinfo/osgi-dev

Re: [osgi-dev] OSGi enRoute Maven Testers wanted ...

2016-10-13 Thread Christian Schneider

Hi Daghan,

I think I can answer part of your questions.

Christian

On 12.10.2016 23:27, Daghan ACAY wrote:


2- how is bndtool resolution and hot deploy from eclipse affected? 
Should we still resolve bndrun in eclipse?



You can still resolve using the UI. But you can also do a pure maven build.
Hot deploy does not work reliably. You have to at least do mvn install 
on the module you changed and restart your OSGi runtime.


3- as a suggestion breaking a build and copy pasting will not work in 
ci/cd. I think a more automated solution can be beneficial.



You can use this configuration to make the resolve completely automated

  true
  false


--
Christian Schneider
http://www.liquid-reality.de

Open Source Architect
http://www.talend.com

___
OSGi Developer Mail List
osgi-dev@mail.osgi.org
https://mail.osgi.org/mailman/listinfo/osgi-dev


Re: [osgi-dev] OSGi enRoute Maven Testers wanted ...

2016-10-12 Thread Daghan ACAY
Hi Peter,

I have read it and i realize three things

1- we now need to add an additional project to create the run time assembly, 
e.g /bndrun folder in the tutorial. Is this the only way? If so will bndtools 
support this type of project template as it is currently supporting api, 
provider, application templates?

2- how is bndtool resolution and hot deploy from eclipse affected? Should we 
still resolve bndrun in eclipse?

3- as a suggestion breaking a build and copy pasting will not work in ci/cd. I 
think a more automated solution can be beneficial.

I will try to give more feedback when i get my hands on the code. Thanks for 
all the work you put in it is very appreciated.

Cheers
Daghan

Sent by MailWise<http://www.mail-wise.com/installation/2> – See your emails as 
clean, short chats.


 Original Message 
From: Christian Schneider <ch...@die-schneider.net>
Sent: Saturday, October 8, 2016 05:20 AM
To: OSGi Developer Mail List <osgi-dev@mail.osgi.org>
Subject: Re: [osgi-dev] OSGi enRoute Maven Testers wanted ...

Hi Peter,

do you also provide the full source code of the finished project?
I read most of the instructions and generally they look good but I think I 
personally would never try to recreate the whole project by hand by following 
the steps.
I think most people would simply checkout the finished example and try and 
experiment with it while reading the sections of the tutorial.

I also think the instructions for creating and adding the runbundles manually 
are quite tedious. I would rather leave the option to auto resolve on for the 
start and explain in a special section what the risks are and how to avoid 
these by "approving" the resolve manually like you describe now.

Btw. I wonder if we could use a command line option for maven to auto update 
the runbundles. So you could describe to first run the build with mvn install. 
It fails and then run again with the option to replace the runbundles. That 
would be a lot simpler than copy pasting them.

Christian

On 06.10.2016 15:51, Peter Kriens wrote:
I’ve created a tutorial for OSGi enRoute with Maven and vi. I am in need of 
some people that are willing to review this tutorial.

The tutorial is at http://enroute.osgi.org/tutorial_eval/050-start.html

You can find the Github source code at: 
https://github.com/osgi/osgi.enroute.site/tree/gh-pages/_tutorial_eval

Please provide tool requests and issues or just mail me personally at 
peter.kri...@aqute.biz<mailto:peter.kri...@aqute.biz>.

Any help would be HIGHLY appreciated. Kind regards,

Peter Kriens



___
OSGi Developer Mail List
osgi-dev@mail.osgi.org<mailto:osgi-dev@mail.osgi.org>
https://mail.osgi.org/mailman/listinfo/osgi-dev



--
Christian Schneider
http://www.liquid-reality.de

Open Source Architect
http://www.talend.com

___
OSGi Developer Mail List
osgi-dev@mail.osgi.org
https://mail.osgi.org/mailman/listinfo/osgi-dev

Re: [osgi-dev] OSGi enRoute Maven Testers wanted ...

2016-10-11 Thread Milen Dyankov
I ended up having:

→ mvn clean install
[INFO] Scanning for projects...
[INFO]
[INFO]

[INFO] Building osgi.enroute.examples.eval.bndrun 1.0.0-SNAPSHOT
[INFO]

[WARNING] The POM for
biz.aQute.bnd:bnd-export-maven-plugin:jar:3.4.0-SNAPSHOT is missing, no
dependency information available
[INFO]

[INFO] BUILD FAILURE
[INFO]

[INFO] Total time: 0.109 s
[INFO] Finished at: 2016-10-12T00:26:21+02:00
[INFO] Final Memory: 7M/309M
[INFO]

[ERROR] Plugin biz.aQute.bnd:bnd-export-maven-plugin:3.4.0-SNAPSHOT or one
of its dependencies could not be resolved: Could not find artifact
biz.aQute.bnd:bnd-export-maven-plugin:jar:3.4.0-SNAPSHOT -> [Help 1]
[ERROR]

after creating the bndrun sub-project. This is with maven 3.3.9. I had to
add


  
bnd-snapshots

https://bndtools.ci.cloudbees.com/job/bnd.master/lastSuccessfulBuild/artifact/dist/bundles/

default
  

to my parent POM to make it work.

Regards,
Milen

On Tue, Oct 11, 2016 at 4:23 PM, BJ Hargrave <hargr...@us.ibm.com> wrote:

> > Btw. I wonder if we could use a command line option for maven to auto
> update the runbundles. So you could describe to first run the build with
> mvn install. It fails and then run again with the option to replace the
> runbundles. That would be a lot simpler than copy pasting them.
>
> We just added support like this to the gradle plugin. It has resolve.XXX
> tasks which run the resolver for the XXX.bndrun file and then replaces the
> -runbundles statement in that bndrun file.
>
> https://github.com/bndtools/bnd/blob/master/biz.aQute.bnd.
> gradle/src/aQute/bnd/gradle/BndPlugin.groovy#L451-L497
>
> --
>
> BJ Hargrave
> Senior Technical Staff Member, IBM // office: +1 386 848 1781
> OSGi Fellow and CTO of the OSGi Alliance // mobile: +1 386 848 3788
> hargr...@us.ibm.com
>
>
>
> - Original message -
> From: Christian Schneider <ch...@die-schneider.net>
> Sent by: osgi-dev-boun...@mail.osgi.org
> To: OSGi Developer Mail List <osgi-dev@mail.osgi.org>
> Cc:
> Subject: Re: [osgi-dev] OSGi enRoute Maven Testers wanted ...
> Date: Fri, Oct 7, 2016 2:20 PM
>
> Hi Peter,
>
> do you also provide the full source code of the finished project?
> I read most of the instructions and generally they look good but I think I
> personally would never try to recreate the whole project by hand by
> following the steps.
> I think most people would simply checkout the finished example and try and
> experiment with it while reading the sections of the tutorial.
>
> I also think the instructions for creating and adding the runbundles
> manually are quite tedious. I would rather leave the option to auto resolve
> on for the start and explain in a special section what the risks are and
> how to avoid these by "approving" the resolve manually like you describe
> now.
>
> Btw. I wonder if we could use a command line option for maven to auto
> update the runbundles. So you could describe to first run the build with
> mvn install. It fails and then run again with the option to replace the
> runbundles. That would be a lot simpler than copy pasting them.
>
> Christian
>
> On 06.10.2016 15:51, Peter Kriens wrote:
>
> I’ve created a tutorial for OSGi enRoute with Maven and vi. I am in need
> of some people that are willing to review this tutorial.
>
> The tutorial is at http://enroute.osgi.org/tutorial_eval/050-start.html
>
> You can find the Github source code at: https://github.com/osgi/
> osgi.enroute.site/tree/gh-pages/_tutorial_eval
>
> Please provide tool requests and issues or just mail me personally at
> peter.kri...@aqute.biz <peter.kri...@aqute.biz>.
>
> Any help would be HIGHLY appreciated. Kind regards,
>
> Peter Kriens
>
> ___
> OSGi Developer Mail List
> osgi-dev@mail.osgi.org
> https://mail.osgi.org/mailman/listinfo/osgi-dev
>
>
>
>
> --
> Christian Schneider
> http://www.liquid-reality.de
>
> Open Source Architect
> http://www.talend.com
> ___
> OSGi Developer Mail List
> osgi-dev@mail.osgi.org
> https://mail.osgi.org/mailman/listinfo/osgi-dev
>
>
>
>
> ___
> OSGi Developer Mail List
> osgi-dev@mail.osgi.org
> https://mail.osgi.org/mailman/listinfo/osgi-dev
>



-- 
http://about.me/milen
___
OSGi Developer Mail List
osgi-dev@mail.osgi.org
https://mail.osgi.org/mailman/listinfo/osgi-dev

Re: [osgi-dev] OSGi enRoute Maven Testers wanted ...

2016-10-11 Thread BJ Hargrave
> Btw. I wonder if we could use a command line option for maven to auto update the runbundles. So you could describe to first run the build with mvn install. It fails and then run again with the option to replace the runbundles. That would be a lot simpler than copy pasting them. 
We just added support like this to the gradle plugin. It has resolve.XXX tasks which run the resolver for the XXX.bndrun file and then replaces the -runbundles statement in that bndrun file.
 
https://github.com/bndtools/bnd/blob/master/biz.aQute.bnd.gradle/src/aQute/bnd/gradle/BndPlugin.groovy#L451-L497
 
--BJ HargraveSenior Technical Staff Member, IBM // office: +1 386 848 1781OSGi Fellow and CTO of the OSGi Alliance // mobile: +1 386 848 3788hargr...@us.ibm.com
 
 
- Original message -From: Christian Schneider <ch...@die-schneider.net>Sent by: osgi-dev-boun...@mail.osgi.orgTo: OSGi Developer Mail List <osgi-dev@mail.osgi.org>Cc:Subject: Re: [osgi-dev] OSGi enRoute Maven Testers wanted ...Date: Fri, Oct 7, 2016 2:20 PM 
Hi Peter,do you also provide the full source code of the finished project?I read most of the instructions and generally they look good but I think I personally would never try to recreate the whole project by hand by following the steps.I think most people would simply checkout the finished example and try and experiment with it while reading the sections of the tutorial.I also think the instructions for creating and adding the runbundles manually are quite tedious. I would rather leave the option to auto resolve on for the start and explain in a special section what the risks are and how to avoid these by "approving" the resolve manually like you describe now.Btw. I wonder if we could use a command line option for maven to auto update the runbundles. So you could describe to first run the build with mvn install. It fails and then run again with the option to replace the runbundles. That would be a lot simpler than copy pasting them.ChristianOn 06.10.2016 15:51, Peter Kriens wrote:
I’ve created a tutorial for OSGi enRoute with Maven and vi. I am in need of some people that are willing to review this tutorial.
 
The tutorial is at http://enroute.osgi.org/tutorial_eval/050-start.html
 
You can find the Github source code at: https://github.com/osgi/osgi.enroute.site/tree/gh-pages/_tutorial_eval
 
Please provide tool requests and issues or just mail me personally at peter.kri...@aqute.biz.
 
Any help would be HIGHLY appreciated. Kind regards,
 
Peter Kriens 

  

___OSGi Developer Mail Listosgi-dev@mail.osgi.orghttps://mail.osgi.org/mailman/listinfo/osgi-dev 

 
--Christian Schneiderhttp://www.liquid-reality.deOpen Source Architecthttp://www.talend.com
___OSGi Developer Mail Listosgi-dev@mail.osgi.orghttps://mail.osgi.org/mailman/listinfo/osgi-dev
 

___
OSGi Developer Mail List
osgi-dev@mail.osgi.org
https://mail.osgi.org/mailman/listinfo/osgi-dev

Re: [osgi-dev] OSGi enRoute Maven Testers wanted ...

2016-10-11 Thread erwindl0


I have done the complete tutorial, following all the steps in detail 
(yep even using vi!).


It's a great way to learn some basic things about the enroute/bnd 
way-of-working, combined with mvn pom setup.

Most importantly : everything works as described from the first try.
(I did have one temporary mvn issue due to its untransparent caching of 
snapshot artifacts, but that was a local issue on my setup)


So thanks Peter for another great contribution for the OSGi community!

cheers
erwin

Op 10/6/2016 om 4:38 PM schreef Peter Kriens:
Then just create issues on the OSGi enRoute site 
https://github.com/osgi/osgi.enroute.site 
. This will keep it nicely 
focused but visible to all. I’d like to get the most embarrassing 
errors out without looking like a fool on this forum but if there are 
more fundamental things then feel free to discuss it here.


You can also submit PRs with inline comments.

Kind regards,

Peter Kriens


On 6 okt. 2016, at 16:16, Milen Dyankov > wrote:


Peter,

can we discuss this here or it needs to go to your e-mail?
I mean it would be nice to discuss this in a place where people can 
follow even if they don't have the time to contribute themselves.


Best,
Milen

On Thu, Oct 6, 2016 at 4:06 PM, erwindl0 > wrote:


Peter,

I would like to try this out.

What is the test/review period you've planned for this? Is it ok
between now and mid November for instance?

regards
erwin

Op 10/6/2016 om 3:51 PM schreef Peter Kriens:

I’ve created a tutorial for OSGi enRoute with Maven and vi. I am
in need of some people that are willing to review this tutorial.

The tutorial is at
http://enroute.osgi.org/tutorial_eval/050-start.html


You can find the Github source code at:
https://github.com/osgi/osgi.enroute.site/tree/gh-pages/_tutorial_eval


Please provide tool requests and issues or just mail me
personally at peter.kri...@aqute.biz
.

Any help would be HIGHLY appreciated. Kind regards,

Peter Kriens


___
OSGi Developer Mail List
osgi-dev@mail.osgi.org 
https://mail.osgi.org/mailman/listinfo/osgi-dev



___ OSGi Developer
Mail List osgi-dev@mail.osgi.org 
https://mail.osgi.org/mailman/listinfo/osgi-dev
 


--
http://about.me/milen
___ OSGi Developer Mail 
List osgi-dev@mail.osgi.org  
https://mail.osgi.org/mailman/listinfo/osgi-dev


___
OSGi Developer Mail List
osgi-dev@mail.osgi.org
https://mail.osgi.org/mailman/listinfo/osgi-dev


___
OSGi Developer Mail List
osgi-dev@mail.osgi.org
https://mail.osgi.org/mailman/listinfo/osgi-dev

Re: [osgi-dev] OSGi enRoute Maven Testers wanted ...

2016-10-07 Thread Christian Schneider

Hi Peter,

do you also provide the full source code of the finished project?
I read most of the instructions and generally they look good but I think 
I personally would never try to recreate the whole project by hand by 
following the steps.
I think most people would simply checkout the finished example and try 
and experiment with it while reading the sections of the tutorial.


I also think the instructions for creating and adding the runbundles 
manually are quite tedious. I would rather leave the option to auto 
resolve on for the start and explain in a special section what the risks 
are and how to avoid these by "approving" the resolve manually like you 
describe now.


Btw. I wonder if we could use a command line option for maven to auto 
update the runbundles. So you could describe to first run the build with 
mvn install. It fails and then run again with the option to replace the 
runbundles. That would be a lot simpler than copy pasting them.


Christian

On 06.10.2016 15:51, Peter Kriens wrote:
I’ve created a tutorial for OSGi enRoute with Maven and vi. I am in 
need of some people that are willing to review this tutorial.


The tutorial is at http://enroute.osgi.org/tutorial_eval/050-start.html

You can find the Github source code at: 
https://github.com/osgi/osgi.enroute.site/tree/gh-pages/_tutorial_eval


Please provide tool requests and issues or just mail me personally at 
peter.kri...@aqute.biz .


Any help would be HIGHLY appreciated. Kind regards,

Peter Kriens


___
OSGi Developer Mail List
osgi-dev@mail.osgi.org
https://mail.osgi.org/mailman/listinfo/osgi-dev



--
Christian Schneider
http://www.liquid-reality.de

Open Source Architect
http://www.talend.com

___
OSGi Developer Mail List
osgi-dev@mail.osgi.org
https://mail.osgi.org/mailman/listinfo/osgi-dev

Re: [osgi-dev] OSGi enRoute Maven Testers wanted ...

2016-10-06 Thread Peter Kriens
Then just create issues on the OSGi enRoute site  
https://github.com/osgi/osgi.enroute.site 
. This will keep it nicely focused 
but visible to all. I’d like to get the most embarrassing errors out without 
looking like a fool on this forum but if there are more fundamental things then 
feel free to discuss it here.

You can also submit PRs with inline comments.

Kind regards,

Peter Kriens


> On 6 okt. 2016, at 16:16, Milen Dyankov  wrote:
> 
> Peter,
> 
> can we discuss this here or it needs to go to your e-mail? 
> I mean it would be nice to discuss this in a place where people can follow 
> even if they don't have the time to contribute themselves.
> 
> Best,
> Milen
> 
> On Thu, Oct 6, 2016 at 4:06 PM, erwindl0  > wrote:
> Peter,
> 
> I would like to try this out. 
> 
> What is the test/review period you've planned for this? Is it ok between now 
> and mid November for instance?
> 
> regards
> erwin
> 
> Op 10/6/2016 om 3:51 PM schreef Peter Kriens:
>> I’ve created a tutorial for OSGi enRoute with Maven and vi. I am in need of 
>> some people that are willing to review this tutorial.
>> 
>> The tutorial is at http://enroute.osgi.org/tutorial_eval/050-start.html 
>> 
>> 
>> You can find the Github source code at: 
>> https://github.com/osgi/osgi.enroute.site/tree/gh-pages/_tutorial_eval 
>> 
>> 
>> Please provide tool requests and issues or just mail me personally at 
>> peter.kri...@aqute.biz .
>> 
>> Any help would be HIGHLY appreciated. Kind regards,
>> 
>> Peter Kriens
>> 
>> 
>> ___
>> OSGi Developer Mail List
>> osgi-dev@mail.osgi.org 
>> https://mail.osgi.org/mailman/listinfo/osgi-dev 
>> 
> 
> ___
> OSGi Developer Mail List
> osgi-dev@mail.osgi.org 
> https://mail.osgi.org/mailman/listinfo/osgi-dev 
> 
> 
> 
> 
> -- 
> http://about.me/milen 
> ___
> OSGi Developer Mail List
> osgi-dev@mail.osgi.org
> https://mail.osgi.org/mailman/listinfo/osgi-dev



smime.p7s
Description: S/MIME cryptographic signature
___
OSGi Developer Mail List
osgi-dev@mail.osgi.org
https://mail.osgi.org/mailman/listinfo/osgi-dev

Re: [osgi-dev] OSGi enRoute Maven Testers wanted ...

2016-10-06 Thread David Daniel
Next week I will be moving from Christian's tools to the official
bndmavenrepository.  I also have a secure Nexus repo I can test upload to
on build.  I have not figured out how to do snapshot's verse releases in
bndtools yet so I will not be able to test that part well.

David

On Thu, Oct 6, 2016 at 10:10 AM, Peter Kriens 
wrote:

> Hmm, rather much shorter :-( I was hoping to release it in the next 2
> weeks.
>
> Any feedback is highly appreciated though.
>
> Kind regards,
>
> Peter Kriens
>
>
> On 6 okt. 2016, at 16:06, erwindl0  wrote:
>
> Peter,
>
> I would like to try this out.
>
> What is the test/review period you've planned for this? Is it ok between
> now and mid November for instance?
>
> regards
> erwin
>
> Op 10/6/2016 om 3:51 PM schreef Peter Kriens:
>
> I’ve created a tutorial for OSGi enRoute with Maven and vi. I am in need
> of some people that are willing to review this tutorial.
>
> The tutorial is at http://enroute.osgi.org/tutorial_eval/050-start.html
>
> You can find the Github source code at: https://github.com/osgi/
> osgi.enroute.site/tree/gh-pages/_tutorial_eval
>
> Please provide tool requests and issues or just mail me personally at
> peter.kri...@aqute.biz .
>
> Any help would be HIGHLY appreciated. Kind regards,
>
> Peter Kriens
>
>
> ___
> OSGi Developer Mail 
> listosgi-...@mail.osgi.orghttps://mail.osgi.org/mailman/listinfo/osgi-dev
>
>
>
>
> ___
> OSGi Developer Mail List
> osgi-dev@mail.osgi.org
> https://mail.osgi.org/mailman/listinfo/osgi-dev
>
___
OSGi Developer Mail List
osgi-dev@mail.osgi.org
https://mail.osgi.org/mailman/listinfo/osgi-dev