Maven + OSGI

2009-06-12 Thread Peter Horlock
Hi, I have a question regarding Maven dependency management and the OSGi-based BIRT Report Engine (RE). The RE, in order to be available at runtime in the tomcat environment, must conform to a specific directory structure: 'top-level' JARs in WEB-INF/lib, config.ini in WEB-INF/platform/configura

Re: Maven + OSGI

2009-06-12 Thread Wayne Fay
> How do I combine MVN storage of the RE JARs (and other files - > config.ini, MANIFEST.MF, ...) with the strict directory structure > requirements at deployment time? Ideally, I'd also like to automatically > upload the RE to the Maven repo initially. The assembly plugin would work with the prope

Re: Maven + OSGI

2009-06-14 Thread Peter Horlock
No one here using OSGI + Maven? What about the plugin I found: http://mvn-dp-plugin.sourceforge.net/site/plugin-info.html Could that do the trick? Thanks, Peter

Re: Maven + OSGI

2009-06-14 Thread Stuart McCulloch
2009/6/15 Peter Horlock > No one here using OSGI + Maven? I'm sure there are several people here using OSGi + Maven (me for one) however, this doesn't sound like a general OSGi issue as such, because OSGi doesn't actually mandate a specific layout of bundles - instead your layout is specific t

Re: Maven + OSGI

2009-06-15 Thread Peter Horlock
Hello Stuart, thanks for your reply. Could you please send me your assembly plugin settings? Thanks in advance, Peter

Re: Maven + OSGI

2009-06-15 Thread Peter Horlock
Could anyone please share his/her assembly plugin settings and assembly file for OSGI? Thanks in advance, Peter

Re: Maven + OSGI

2009-06-17 Thread Stuart McCulloch
2009/6/15 Peter Horlock > Hello Stuart, > > thanks for your reply. > > Could you please send me your assembly plugin settings? > Hi Peter, Unfortunately I don't have an assembly configuration I can share at the moment - I use Pax-Runner to deploy my apps. If you're still stuck perhaps you could

Re: Maven + OSGI

2009-06-17 Thread Peter Horlock
Thanks Stuart, I'll try to get help on that list. Peter

maven / osgi / repositories

2009-01-27 Thread Henri Gomez
Hi to all, We're using maven to build all our company projects for about 6 months and are very happy with it. Some of our projects, mainly Eclipse RCP plugins, are also mavenized. We know think about OSGIfing more of our projects (server side) and track ASF projects Felix of course core but also

Re: maven / osgi / repositories

2009-01-27 Thread Samuel Le Berrigaud
Hi Henri, it seems to me that OSGi jars are not meant to be anything else that traditional jars with extra information in their MANIFEST. I would definitely recomment deploying them as standard jar as you would do for any normal maven project. One thing that could/would differentiate your OSGi ja

Re: maven / osgi / repositories

2009-01-27 Thread Holger Hoffstaette
On Tue, 27 Jan 2009 22:53:10 +1100, Samuel Le Berrigaud wrote: > Another point of reference you might consider is how the springsource > guys make OSGi-ified version of many java libraries in their bundle > repository [http://www.springsource.com/repository/]. This acts pretty > much as a simple m

Re: maven / osgi / repositories

2009-01-27 Thread Henri Gomez
>> Another point of reference you might consider is how the springsource >> guys make OSGi-ified version of many java libraries in their bundle >> repository [http://www.springsource.com/repository/]. This acts pretty >> much as a simple maven repository delivering jars. > > ..with renamed group/ar

Re: maven / osgi / repositories

2009-01-27 Thread Henri Gomez
> Hi Henri, > > it seems to me that OSGi jars are not meant to be anything else that > traditional jars with extra information in their MANIFEST. I would > definitely recomment deploying them as standard jar as you would do > for any normal maven project. Simple jar with MANIFEST, but today very f

Re: maven / osgi / repositories

2009-01-27 Thread Samuel Le Berrigaud
Hi, as you point it out there is definitely an issue with the renaming of groupId /artifactId as it will 'break' maven dependency management. However I don't think that anyone but the project owner(s) should be allowed to deploy a jar with their groupId/artifactId (to the public repo). I believe t

Re: maven / osgi / repositories

2009-01-27 Thread Henri Gomez
> as you point it out there is definitely an issue with the renaming of > groupId /artifactId as it will 'break' maven dependency management. > However I don't think that anyone but the project owner(s) should be > allowed to deploy a jar with their groupId/artifactId (to the public > repo). I beli

Re: maven / osgi / repositories

2009-01-27 Thread Barrie Treloar
> repositories. They might become OBRs at some point when OSGi becomes > more "mainstream". One thing I have been toying with for a while is to auto-magically extend maven-jar-plugin to add the OSGi headers. I haven't given a lot of thought into what I need to do, but if I recall correctly, getti

RE : maven / osgi / repositories

2009-01-28 Thread Deneux, Christophe
Isn't the role of the "classifier" field ? instead of : org.apache.ant ant 1.7.1 we could use : org.apache.ant ant 1.7.1 osgi De: Henri Gomez [mailto:henri.go...@gmail.com] Date: mar. 27/01/2009 23:00 À: Maven Users List Objet : R

Re: maven / osgi / repositories

2009-01-29 Thread Jason van Zyl
On 27-Jan-09, at 6:41 PM, Barrie Treloar wrote: repositories. They might become OBRs at some point when OSGi becomes more "mainstream". One thing I have been toying with for a while is to auto-magically extend maven-jar-plugin to add the OSGi headers. I really don't think this is a great i

Re: maven / osgi / repositories

2009-01-29 Thread Henri Gomez
>> One thing I have been toying with for a while is to auto-magically >> extend maven-jar-plugin to add the OSGi headers. > I really don't think this is a great idea. I think for a bundle to be useful > someone needs to provide proper imports and exports. Right, but it make took years ;( >> I ha

RE: maven / osgi / repositories

2009-01-29 Thread Edelson, Justin
.@sonatype.com] Sent: Tue 1/27/2009 10:43 PM To: Maven Users List Subject: Re: maven / osgi / repositories On 27-Jan-09, at 6:41 PM, Barrie Treloar wrote: >> repositories. They might become OBRs at some point when OSGi becomes >> more "mainstream". > > One thing I ha

Re: maven / osgi / repositories

2009-01-29 Thread Barrie Treloar
On Wed, Jan 28, 2009 at 2:13 PM, Jason van Zyl wrote: > > On 27-Jan-09, at 6:41 PM, Barrie Treloar wrote: > >>> repositories. They might become OBRs at some point when OSGi becomes >>> more "mainstream". >> >> One thing I have been toying with for a while is to auto-magically >> extend maven-jar-p

Re: maven / osgi / repositories

2009-03-29 Thread lukewpatterson
to OSGi-ification. This wreaks havoc with the coordinate system. Sometimes the authors don't even know that others (1..*) have published wrapped versions of their jars. The dependency authors should be made aware that these workarounds do not serve the Maven+OSGi community well. * "We wo

[VOTE] Retire Maven OSGi

2019-08-23 Thread Robert Scholte
Maven itself. To be able to gain more focus we need to criticize the current subprojects and decide if it is worth maintaining. https://maven.apache.org/shared/maven-osgi/ describes the main purpose in one line: Library for Maven-OSGi integration. There have been only 2 releases: 0.1.0 in July 200

Maven-OSGI and Spring

2012-05-22 Thread CHOUBEY, PRIYAL
Is it possible to create a maven-osgi project which uses spring libraries? I have a web dynamic project which has rest services with spring framework and the persistence is done by a JPA project. When these are normal projects, these work fine.. But when I create Maven-OSGI project with JPA

[m2] maven-osgi-plugin

2005-07-19 Thread Bennett, Timothy (JIS/Applications)
Is the maven-osgi-plugin available for maven2 yet? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: RE : maven / osgi / repositories

2009-01-28 Thread Henri Gomez
2009/1/28 Deneux, Christophe : > Isn't the role of the "classifier" field ? > > instead of : > > org.apache.ant > ant > 1.7.1 > > we could use : > > org.apache.ant > ant > 1.7.1 > osgi Good but how do you specify such classifier in dependants projects ? ---

RE : RE : maven / osgi / repositories

2009-01-29 Thread Deneux, Christophe
l awareness. De: Henri Gomez [mailto:henri.go...@gmail.com] Date: mer. 28/01/2009 18:04 À: Maven Users List Objet : Re: RE : maven / osgi / repositories 2009/1/28 Deneux, Christophe : > Isn't the role of the "classifier" field ? > > in

Re: [VOTE] Retire Maven OSGi

2019-08-23 Thread Tamás Cservenák
rojects, > including our ambitious ideas for the next major version(s) of Maven > itself. > To be able to gain more focus we need to criticize the current > subprojects > and decide if it is worth maintaining. > > https://maven.apache.org/shared/maven-osgi/ describes the main p

Re: [VOTE] Retire Maven OSGi

2019-08-23 Thread Tibor Digana
There's very good BND plugin org.apache.felix:maven-bundle-plugin. +1 to retire and delete old https://maven.apache.org/shared/maven-osgi/ Cheers Tibor17 On Fri, Aug 23, 2019 at 3:17 PM Robert Scholte wrote: > Hi, > > The Apache Maven project consist of about 90 (sub)projec

Re: [VOTE] Retire Maven OSGi

2019-08-23 Thread Karl Heinz Marbaise
these projects, including our ambitious ideas for the next major version(s) of Maven itself. To be able to gain more focus we need to criticize the current subprojects and decide if it is worth maintaining. https://maven.apache.org/shared/maven-osgi/ describes the main purpose in one line: Librar

Re: [VOTE] Retire Maven OSGi

2019-08-23 Thread Tibor Digana
Maven. Cheers Tibor17 On Fri, Aug 23, 2019 at 5:21 PM Dirk Mahler wrote: > Hi, > > I'm not using it but just for curiosity I checked on Maven Central if > some artifacts have been pushed there recently that declare a dependency > to this artifact (maven-osgi): > >

Re: [VOTE] Retire Maven OSGi

2019-08-23 Thread Arnaud Héritier
rojects, > including our ambitious ideas for the next major version(s) of Maven > itself. > To be able to gain more focus we need to criticize the current > subprojects > and decide if it is worth maintaining. > > https://maven.apache.org/shared/maven-osgi/ describes the main p

Re: [VOTE] Retire Maven OSGi

2019-08-23 Thread Enrico Olivelli
. > > To be able to gain more focus we need to criticize the current > > subprojects > > and decide if it is worth maintaining. > > > > https://maven.apache.org/shared/maven-osgi/ describes the main purpose > > in > > one line: Library for Maven-OSGi integration. >

Re: [VOTE] Retire Maven OSGi

2019-08-24 Thread Francois Papon
ecide if it is worth maintaining. > > https://maven.apache.org/shared/maven-osgi/ describes the main purpose > in one line: Library for Maven-OSGi integration. > There have been only 2 releases: 0.1.0 in July 2007 and 0.2.0 in > December 2007 and just one open issue by Stuart McCulloch

[RESULT] [VOTE] Retire Maven OSGi

2019-08-27 Thread Robert Scholte
g our ambitious ideas for the next major version(s) of Maven itself. To be able to gain more focus we need to criticize the current subprojects and decide if it is worth maintaining. https://maven.apache.org/shared/maven-osgi/ describes the main purpose in one line: Library for Maven-OSGi integr

Re: [VOTE] Retire Maven OSGi

2019-09-05 Thread Konrad Windszus
Hi, just for the record: There is a replacement for most of the classes in bnd: https://github.com/bndtools/bnd/blob/9a4d7bcc04c2377641911b517ca8b1915f763a9a/biz.aQute.bndlib/src/aQute/bnd/version/MavenVersion.java I just replaced the code using maven-osgi with bndlib in Apache Sling : https

Recall: Maven-OSGI and Spring

2012-05-22 Thread CHOUBEY, PRIYAL
CHOUBEY, PRIYAL would like to recall the message, "Maven-OSGI and Spring". - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additional commands, e-mail: users-h...@maven.apache.org

Re: Maven-OSGI and Spring

2012-05-22 Thread Ron Wheeler
What do you mean "this doesn't work"? A little detail might get you some help. Ron On 22/05/2012 7:24 AM, CHOUBEY, PRIYAL wrote: Is it possible to create a maven-osgi project which uses spring libraries? I have a web dynamic project which has rest services with spring fra

Re: [m2] maven-osgi-plugin

2005-07-19 Thread Brett Porter
There has been talk, buit AFAIK nobody has writen one for any version of Maven. If you know of one, please let us know the URL. - Brett On 7/20/05, Bennett, Timothy (JIS/Applications) <[EMAIL PROTECTED]> wrote: > Is the maven-osgi-plugin available for m

RE: [m2] maven-osgi-plugin

2005-07-19 Thread Bennett, Timothy (JIS/Applications)
> -Original Message- > From: Brett Porter [mailto:[EMAIL PROTECTED] > Sent: Tuesday, July 19, 2005 3:32 PM > To: Maven Users List > Subject: Re: [m2] maven-osgi-plugin > > There has been talk, buit AFAIK nobody has writen one for any > version of Maven. If you kn

Re: [m2] maven-osgi-plugin

2005-07-19 Thread Brett Porter
> > To: Maven Users List > > Subject: Re: [m2] maven-osgi-plugin > > > > There has been talk, buit AFAIK nobody has writen one for any > > version of Maven. If you know of one, please let us know the URL. > > > > http://mavenosgiplugin.berl

Re: RE : RE : maven / osgi / repositories

2009-01-29 Thread Henri Gomez
________ > > De: Henri Gomez [mailto:henri.go...@gmail.com] > Date: mer. 28/01/2009 18:04 > À: Maven Users List > Objet : Re: RE : maven / osgi / repositories > > > > 2009/1/28 Deneux, Christophe : >> Isn't the role of the "classifi

RE : RE : RE : maven / osgi / repositories

2009-01-30 Thread Deneux, Christophe
s List Objet : Re: RE : RE : maven / osgi / repositories Good idea. Did you have sample pom.xml for study ? Thanks Christophe 2009/1/29 Deneux, Christophe : > In your OSGI bundle project, you will use the maven-assembly-plugin to > generate your OSGI bundle artifact (artifac

resolve dependencies for maven osgi project

2012-02-06 Thread adnama
dependencies manually. please help. -- View this message in context: http://maven.40175.n5.nabble.com/resolve-dependencies-for-maven-osgi-project-tp5459677p5459677.html Sent from the Maven - Users mailing list archive at Nabble.com

AW: RE : RE : RE : maven / osgi / repositories

2009-01-30 Thread Mark Struberg
good discussion about OSGi. What about the maven-osgi-plugin [1] or the even better the maven-bundle-plugin [2] the felix folks use? Has anyone experience with one of those yet? LieGrue, strub [1] http://mavenosgiplugin.berlios.de/ [2] http://felix.apache.org/site/apache-felix-maven-bundle-plugin-bnd