From: Will M. <wmc...@ci...> - 2007-06-21 21:01:35
|
Hi all, I was wondering when the zip file containing all the h files gets created? I'm attempting to use this plugin to compile a native library to share with other projects, and when I execute 'mvn install' I see the dll get created, but the zip file is missing. Your help is greatly appreciated. -Will McKinley |
From: Frederic S. <fr...@jf...> - 2007-06-22 05:10:12
|
By default the flag "deployInclude" is false, so the XXX-include.zip file are created or downloaded. You can see the configuration params here: http://www.jfrog.org/sites/jade-plugins/latest/jade-plugin-parent/jade-build-plugin-parent/jade-native-plugin/compile-mojo.html#deployInclude You can also change from zip to jar "*<includesExtension>*jar</* includesExtension>*". And if you have many modules dependant from one another (reactor projects), it's faster to use a global *includesRootDir* for the whole project. This is the directory where all XX-include.zip will be extracted. So instead of extracting all the zip files for each module, the extract happens only once. Hope it helps, and thanks for using jade-plugins. On 6/22/07, Will McKinley <wmc...@ci...> wrote: > > Hi all, > > I was wondering when the zip file containing all the h files gets created? > I'm attempting to use this plugin to compile a native library to share > with > other projects, and when I execute 'mvn install' I see the dll get > created, > but the zip file is missing. > > Your help is greatly appreciated. > > -Will McKinley > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > Jade-plugins-users mailing list > Jad...@li... > https://lists.sourceforge.net/lists/listinfo/jade-plugins-users > -- "CapsLock Key is like rear mirrors in BMW! Who needs them?" freddy33 |
From: Will M. <wmc...@ci...> - 2007-06-22 13:33:26
|
Hi Frederic, Thanks for the tip. I do see that it now creates a zip file, but it happens to be empty. What is the mojo to get my include files to actually be zipped up? Thanks, Will On 6/22/07 1:10 AM, "Frederic Simon" <fr...@jf...> wrote: > By default the flag "deployInclude" is false, so the XXX-include.zip file are > created or downloaded. You can see the configuration params here: > http://www.jfrog.org/sites/jade-plugins/latest/jade-plugin-parent/jade-build-p > lugin-parent/jade-native-plugin/compile-mojo.html#deployInclude > > You can also change from zip to jar " > <includesExtension>jar</includesExtension>". > And if you have many modules dependant from one another (reactor projects), > it's faster to use a global includesRootDir for the whole project. This is the > directory where all XX-include.zip will be extracted. So instead of extracting > all the zip files for each module, the extract happens only once. > > Hope it helps, and thanks for using jade-plugins. > > On 6/22/07, Will McKinley <wmc...@ci...> wrote: >> Hi all, >> >> I was wondering when the zip file containing all the h files gets created? >> I'm attempting to use this plugin to compile a native library to share with >> other projects, and when I execute 'mvn install' I see the dll get created, >> but the zip file is missing. >> >> Your help is greatly appreciated. >> >> -Will McKinley >> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by DB2 Express >> Download DB2 Express C - the FREE version of DB2 express and take >> control of your XML. No limits. Just data. Click to get it now. >> http://sourceforge.net/powerbar/db2/ <http://sourceforge.net/powerbar/db2/> >> _______________________________________________ >> Jade-plugins-users mailing list >> Jad...@li... >> https://lists.sourceforge.net/lists/listinfo/jade-plugins-users > > |
From: Frederic S. <fr...@jf...> - 2007-06-22 14:20:14
|
Here is the mojo: http://www.jfrog.org/svn/jade-plugins/trunk/plugins/build/jade-native-plugin/src/main/java/org/jfrog/jade/plugins/natives/plugin/NativeCompileMojo.java The function getIncludesZipper() is creating a zipper which includes all "**/*.h" files under the source dir of maven: <build> <sourceDirectory>src</sourceDirectory> <testSourceDirectory>src</testSourceDirectory> This is a big difference from the native plugin, that usually generate this empty zip... Hope it helps. On 6/22/07, Will McKinley <wmc...@ci...> wrote: > > Hi Frederic, > > Thanks for the tip. I do see that it now creates a zip file, but it > happens to be empty. What is the mojo to get my include files to actually > be zipped up? > > Thanks, > Will > > > On 6/22/07 1:10 AM, "Frederic Simon" <fr...@jf...> wrote: > > By default the flag "deployInclude" is false, so the XXX-include.zip file > are created or downloaded. You can see the configuration params here: > > http://www.jfrog.org/sites/jade-plugins/latest/jade-plugin-parent/jade-build-plugin-parent/jade-native-plugin/compile-mojo.html#deployInclude > > You can also change from zip to jar "* <includesExtension>*jar</* > includesExtension>*". > And if you have many modules dependant from one another (reactor > projects), it's faster to use a global *includesRootDir* for the whole > project. This is the directory where all XX-include.zip will be extracted. > So instead of extracting all the zip files for each module, the extract > happens only once. > > Hope it helps, and thanks for using jade-plugins. > > On 6/22/07, *Will McKinley* <wmc...@ci...> wrote: > > Hi all, > > I was wondering when the zip file containing all the h files gets created? > I'm attempting to use this plugin to compile a native library to share > with > other projects, and when I execute 'mvn install' I see the dll get > created, > but the zip file is missing. > > Your help is greatly appreciated. > > -Will McKinley > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > <http://sourceforge.net/powerbar/db2/><http://sourceforge.net/powerbar/db2/> > _______________________________________________ > Jade-plugins-users mailing list > Jad...@li... > https://lists.sourceforge.net/lists/listinfo/jade-plugins-users > > > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > Jade-plugins-users mailing list > Jad...@li... > https://lists.sourceforge.net/lists/listinfo/jade-plugins-users > > -- "CapsLock Key is like rear mirrors in BMW! Who needs them?" freddy33 |
From: Will M. <wmc...@ci...> - 2007-06-22 14:43:43
|
Looks like that did the trick! Thanks so much for your guidance. FYI, here=B9s where I messed up. I assumed that the declaration of <sourceDirectory> was not necessary since I was already explicitly defining <source> in the plugin configuration. -Will On 6/22/07 10:20 AM, "Frederic Simon" <fr...@jf...> wrote: > Here is the mojo: > http://www.jfrog.org/svn/jade-plugins/trunk/plugins/build/jade-native-plu= gin/s > rc/main/java/org/jfrog/jade/plugins/natives/plugin/NativeCompileMojo.java > <http://www.jfrog.org/svn/jade-plugins/trunk/plugins/build/jade-native-pl= ugin/ > src/main/java/org/jfrog/jade/plugins/natives/plugin/NativeCompileMojo.jav= a> > The function getIncludesZipper() is creating a zipper which includes all > "**/*.h" files under the source dir of maven: > <build> > <sourceDirectory>src</sourceDirectory> > <testSourceDirectory>src</testSourceDirectory> >=20 > This is a big difference from the native plugin, that usually generate th= is > empty zip... >=20 > Hope it helps. >=20 > On 6/22/07, Will McKinley < wmc...@ci... <mailto:wmc...@ci...= > > > wrote: >> Hi Frederic, >>=20 >> Thanks for the tip. I do see that it now creates a zip file, but it hap= pens >> to be empty. What is the mojo to get my include files to actually be zi= pped >> up? >>=20 >> Thanks, >> Will >>=20 >>=20 >> On 6/22/07 1:10 AM, "Frederic Simon" <fr...@jf...> wrote: >>=20 >>> By default the flag "deployInclude" is false, so the XXX-include.zip fi= le >>> are created or downloaded. You can see the configuration params here: >>> http://www.jfrog.org/sites/jade-plugins/latest/jade-plugin-parent/jade-= build >>> -plugin-parent/jade-native-plugin/compile-mojo.html#deployInclude >>>=20 >>> You can also change from zip to jar " >>> <includesExtension>jar</includesExtension>". >>> And if you have many modules dependant from one another (reactor projec= ts), >>> it's faster to use a global includesRootDir for the whole project. This= is >>> the directory where all XX-include.zip will be extracted. So instead of >>> extracting all the zip files for each module, the extract happens only = once. >>>=20 >>> Hope it helps, and thanks for using jade-plugins. >>>=20 >>> On 6/22/07, Will McKinley <wmc...@ci...> wrote: >>>> Hi all, >>>>=20 >>>> I was wondering when the zip file containing all the h files gets crea= ted? >>>> I'm attempting to use this plugin to compile a native library to share= with >>>> other projects, and when I execute 'mvn install' I see the dll get cre= ated, >>>> but the zip file is missing. >>>>=20 >>>> Your help is greatly appreciated. >>>>=20 >>>> -Will McKinley >>>>=20 >>>> ----------------------------------------------------------------------= --- >>>> This SF.net email is sponsored by DB2 Express >>>> Download DB2 Express C - the FREE version of DB2 express and take >>>> control of your XML. No limits. Just data. Click to get it now. >>>> http://sourceforge.net/powerbar/db2/ >>>> <http://sourceforge.net/powerbar/db2/> >>>> _______________________________________________ >>>> Jade-plugins-users mailing list >>>> Jad...@li... >>>> https://lists.sourceforge.net/lists/listinfo/jade-plugins-users >>>=20 >>>=20 >>=20 >>=20 >> ------------------------------------------------------------------------= - >> This SF.net email is sponsored by DB2 Express >> Download DB2 Express C - the FREE version of DB2 express and take >> control of your XML. No limits. Just data. Click to get it now. >> http://sourceforge.net/powerbar/db2/ >> _______________________________________________ >> Jade-plugins-users mailing list >> Jad...@li... >> https://lists.sourceforge.net/lists/listinfo/jade-plugins-users >>=20 >=20 >=20 |
From: Will M. <wmc...@ci...> - 2007-06-25 17:40:50
|
Hi again. It looks like for a dependency of type =B3lib=B2 the includes zip is not downloaded from the remote repository. Is there a reason for this? Thanks, Will On 6/22/07 1:10 AM, "Frederic Simon" <fr...@jf...> wrote: > By default the flag "deployInclude" is false, so the XXX-include.zip file= are > created or downloaded. You can see the configuration params here: > http://www.jfrog.org/sites/jade-plugins/latest/jade-plugin-parent/jade-bu= ild-p > lugin-parent/jade-native-plugin/compile-mojo.html#deployInclude >=20 > You can also change from zip to jar " > <includesExtension>jar</includesExtension>". > And if you have many modules dependant from one another (reactor projects= ), > it's faster to use a global includesRootDir for the whole project. This i= s the > directory where all XX-include.zip will be extracted. So instead of extra= cting > all the zip files for each module, the extract happens only once. >=20 > Hope it helps, and thanks for using jade-plugins. >=20 > On 6/22/07, Will McKinley <wmc...@ci...> wrote: >> Hi all, >>=20 >> I was wondering when the zip file containing all the h files gets create= d? >> I'm attempting to use this plugin to compile a native library to share w= ith >> other projects, and when I execute 'mvn install' I see the dll get creat= ed, >> but the zip file is missing. >>=20 >> Your help is greatly appreciated. >>=20 >> -Will McKinley >>=20 >> ------------------------------------------------------------------------= - >> This SF.net email is sponsored by DB2 Express >> Download DB2 Express C - the FREE version of DB2 express and take >> control of your XML. No limits. Just data. Click to get it now. >> http://sourceforge.net/powerbar/db2/ <http://sourceforge.net/powerbar/d= b2/> >> _______________________________________________ >> Jade-plugins-users mailing list >> Jad...@li... >> https://lists.sourceforge.net/lists/listinfo/jade-plugins-users >=20 >=20 |
From: Will M. <wmc...@ci...> - 2007-06-26 13:49:32
|
More information on this: I ran the build with =ADX to see maven debug and found the following. =B3[DEBUG] Error looking up lifecycle mapping to retrieve optional mojos. Lifecycle ID: default. Error: Component descriptor cannot be found in the component repository: org.apache.maven.lifecycle.mapping.LifecycleMappinglib.=B2 This is a curious output. I=B9m not sure if the log concatenated LifecycleMapping with lib or if that was concatenated prior to the search. Thanks for your assistance. Will On 6/25/07 1:40 PM, "Will McKinley" <wmc...@ci...> wrote: > Hi again. >=20 > It looks like for a dependency of type =B3lib=B2 the includes zip is not > downloaded from the remote repository. Is there a reason for this? >=20 > Thanks, > Will >=20 >=20 > On 6/22/07 1:10 AM, "Frederic Simon" <fr...@jf...> wrote: >=20 >> By default the flag "deployInclude" is false, so the XXX-include.zip fil= e are >> created or downloaded. You can see the configuration params here: >> http://www.jfrog.org/sites/jade-plugins/latest/jade-plugin-parent/jade-b= uild- >> plugin-parent/jade-native-plugin/compile-mojo.html#deployInclude >>=20 >> You can also change from zip to jar " >> <includesExtension>jar</includesExtension>". >> And if you have many modules dependant from one another (reactor project= s), >> it's faster to use a global includesRootDir for the whole project. This = is >> the directory where all XX-include.zip will be extracted. So instead of >> extracting all the zip files for each module, the extract happens only o= nce. >>=20 >> Hope it helps, and thanks for using jade-plugins. >>=20 >> On 6/22/07, Will McKinley <wmc...@ci...> wrote: >>> Hi all, >>>=20 >>> I was wondering when the zip file containing all the h files gets creat= ed? >>> I'm attempting to use this plugin to compile a native library to share = with >>> other projects, and when I execute 'mvn install' I see the dll get crea= ted, >>> but the zip file is missing. >>>=20 >>> Your help is greatly appreciated. >>>=20 >>> -Will McKinley >>>=20 >>> -----------------------------------------------------------------------= -- >>> This SF.net email is sponsored by DB2 Express >>> Download DB2 Express C - the FREE version of DB2 express and take >>> control of your XML. No limits. Just data. Click to get it now. >>> http://sourceforge.net/powerbar/db2/ <http://sourceforge.net/powerbar/= db2/> >>> _______________________________________________ >>> Jade-plugins-users mailing list >>> Jad...@li... >>> https://lists.sourceforge.net/lists/listinfo/jade-plugins-users >>=20 >>=20 >=20 >=20 >=20 > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ >=20 > _______________________________________________ > Jade-plugins-users mailing list > Jad...@li... > https://lists.sourceforge.net/lists/listinfo/jade-plugins-users |
From: <fr...@jf...> - 2007-06-26 15:24:20
|
The issue is that only so, a, and dll are declared to be library that pom can be dependent on. Sorry for my ignorance but: What is the "lib" type? Anyway I will add a parameter list to identify packages that are library. Thanks for reporting this. On 6/26/07, Will McKinley <wmc...@ci...> wrote: > More information on this: > > I ran the build with =ADX to see maven debug and found the following. > > =B3[DEBUG] Error looking up lifecycle mapping to retrieve optional mojos. > Lifecycle ID: default. Error: Component descriptor cannot be found in t= he > component repository: > org.apache.maven.lifecycle.mapping.LifecycleMappinglib.=B2 > > This is a curious output. I=B9m not sure if the log concatenated > LifecycleMapping with lib or if that was concatenated prior to the search= . > > Thanks for your assistance. > Will > > > On 6/25/07 1:40 PM, "Will McKinley" <wmc...@ci...> wrote: > > > Hi again. > > > > It looks like for a dependency of type =B3lib=B2 the includes zip is no= t > > downloaded from the remote repository. Is there a reason for this? > > > > Thanks, > > Will > > > > > > On 6/22/07 1:10 AM, "Frederic Simon" <fr...@jf...> wrote: > > > >> By default the flag "deployInclude" is false, so the XXX-include.zip f= ile > are > >> created or downloaded. You can see the configuration params here: > >> > http://www.jfrog.org/sites/jade-plugins/latest/jade-plugin-parent/jade-bu= ild- > >> plugin-parent/jade-native-plugin/compile-mojo.html#deployInclude > >> > >> You can also change from zip to jar " > >> <includesExtension>jar</includesExtension>". > >> And if you have many modules dependant from one another (reactor > projects), > >> it's faster to use a global includesRootDir for the whole project. Thi= s > is > >> the directory where all XX-include.zip will be extracted. So instead o= f > >> extracting all the zip files for each module, the extract happens only > once. > >> > >> Hope it helps, and thanks for using jade-plugins. > >> > >> On 6/22/07, Will McKinley <wmc...@ci...> wrote: > >>> Hi all, > >>> > >>> I was wondering when the zip file containing all the h files gets > created? > >>> I'm attempting to use this plugin to compile a native library to shar= e > with > >>> other projects, and when I execute 'mvn install' I see the dll get > created, > >>> but the zip file is missing. > >>> > >>> Your help is greatly appreciated. > >>> > >>> -Will McKinley > >>> > >>> > ------------------------------------------------------------------------- > >>> This SF.net email is sponsored by DB2 Express > >>> Download DB2 Express C - the FREE version of DB2 express and take > >>> control of your XML. No limits. Just data. Click to get it now. > >>> http://sourceforge.net/powerbar/db2/ > <http://sourceforge.net/powerbar/db2/> > >>> _______________________________________________ > >>> Jade-plugins-users mailing list > >>> Jad...@li... > >>> https://lists.sourceforge.net/lists/listinfo/jade-plugins-users > >> > >> > > > > > > > > -----------------------------------------------------------------------= -- > > This SF.net email is sponsored by DB2 Express > > Download DB2 Express C - the FREE version of DB2 express and take > > control of your XML. No limits. Just data. Click to get it now. > > http://sourceforge.net/powerbar/db2/ > > > > _______________________________________________ > > Jade-plugins-users mailing list > > Jad...@li... > > https://lists.sourceforge.net/lists/listinfo/jade-plugins-users > > > --=20 "CapsLock Key is like rear mirrors in BMW! Who needs them?" freddy33 |
From: Will M. <wmc...@ci...> - 2007-06-26 16:04:39
|
Thanks! The "lib" type is a static library for Windows. While you are at it, can you also add "dylib" (Mac dynamic library)? Regards, Will On 6/26/07 11:24 AM, "fr...@jf..." <fr...@jf...> wrote: > The issue is that only so, a, and dll are declared to be library that > pom can be dependent on. Sorry for my ignorance but: What is the "lib" > type? > Anyway I will add a parameter list to identify packages that are library. > Thanks for reporting this. >=20 > On 6/26/07, Will McKinley <wmc...@ci...> wrote: >> More information on this: >>=20 >> I ran the build with =ADX to see maven debug and found the following. >>=20 >> =B3[DEBUG] Error looking up lifecycle mapping to retrieve optional mojos. >> Lifecycle ID: default. Error: Component descriptor cannot be found in = the >> component repository: >> org.apache.maven.lifecycle.mapping.LifecycleMappinglib.=B2 >>=20 >> This is a curious output. I=B9m not sure if the log concatenated >> LifecycleMapping with lib or if that was concatenated prior to the searc= h. >>=20 >> Thanks for your assistance. >> Will >>=20 >>=20 >> On 6/25/07 1:40 PM, "Will McKinley" <wmc...@ci...> wrote: >>=20 >>> Hi again. >>>=20 >>> It looks like for a dependency of type =B3lib=B2 the includes zip is not >>> downloaded from the remote repository. Is there a reason for this? >>>=20 >>> Thanks, >>> Will >>>=20 >>>=20 >>> On 6/22/07 1:10 AM, "Frederic Simon" <fr...@jf...> wrote: >>>=20 >>>> By default the flag "deployInclude" is false, so the XXX-include.zip f= ile >> are >>>> created or downloaded. You can see the configuration params here: >>>>=20 >> http://www.jfrog.org/sites/jade-plugins/latest/jade-plugin-parent/jade-b= uild- >>>> plugin-parent/jade-native-plugin/compile-mojo.html#deployInclude >>>>=20 >>>> You can also change from zip to jar " >>>> <includesExtension>jar</includesExtension>". >>>> And if you have many modules dependant from one another (reactor >> projects), >>>> it's faster to use a global includesRootDir for the whole project. Thi= s >> is >>>> the directory where all XX-include.zip will be extracted. So instead o= f >>>> extracting all the zip files for each module, the extract happens only >> once. >>>>=20 >>>> Hope it helps, and thanks for using jade-plugins. >>>>=20 >>>> On 6/22/07, Will McKinley <wmc...@ci...> wrote: >>>>> Hi all, >>>>>=20 >>>>> I was wondering when the zip file containing all the h files gets >> created? >>>>> I'm attempting to use this plugin to compile a native library to shar= e >> with >>>>> other projects, and when I execute 'mvn install' I see the dll get >> created, >>>>> but the zip file is missing. >>>>>=20 >>>>> Your help is greatly appreciated. >>>>>=20 >>>>> -Will McKinley >>>>>=20 >>>>>=20 >> ------------------------------------------------------------------------= - >>>>> This SF.net email is sponsored by DB2 Express >>>>> Download DB2 Express C - the FREE version of DB2 express and take >>>>> control of your XML. No limits. Just data. Click to get it now. >>>>> http://sourceforge.net/powerbar/db2/ >> <http://sourceforge.net/powerbar/db2/> >>>>> _______________________________________________ >>>>> Jade-plugins-users mailing list >>>>> Jad...@li... >>>>> https://lists.sourceforge.net/lists/listinfo/jade-plugins-users >>>>=20 >>>>=20 >>>=20 >>>=20 >>>=20 >>> -----------------------------------------------------------------------= -- >>> This SF.net email is sponsored by DB2 Express >>> Download DB2 Express C - the FREE version of DB2 express and take >>> control of your XML. No limits. Just data. Click to get it now. >>> http://sourceforge.net/powerbar/db2/ >>>=20 >>> _______________________________________________ >>> Jade-plugins-users mailing list >>> Jad...@li... >>> https://lists.sourceforge.net/lists/listinfo/jade-plugins-users >>=20 >>=20 >>=20 >=20 |
From: Frederic S. <fr...@jf...> - 2007-07-02 04:46:24
|
http://www.jfrog.org/jira/browse/JAPL-35 was solved (If you can test on 1.3-SNAPSHOT it will be great), I should release 1.3.9 soon. On 6/26/07, Will McKinley <wmc...@ci...> wrote: > > Thanks! > > The "lib" type is a static library for Windows. While you are at it, can > you also add "dylib" (Mac dynamic library)? > > Regards, > Will > > > On 6/26/07 11:24 AM, "fr...@jf..." <fr...@jf...> wrote: > > > The issue is that only so, a, and dll are declared to be library that > > pom can be dependent on. Sorry for my ignorance but: What is the "lib" > > type? > > Anyway I will add a parameter list to identify packages that are > library. > > Thanks for reporting this. > > > > On 6/26/07, Will McKinley <wmc...@ci...> wrote: > >> More information on this: > >> > >> I ran the build with =ADX to see maven debug and found the following. > >> > >> =B3[DEBUG] Error looking up lifecycle mapping to retrieve optional moj= os. > >> Lifecycle ID: default. Error: Component descriptor cannot be found i= n > the > >> component repository: > >> org.apache.maven.lifecycle.mapping.LifecycleMappinglib.=B2 > >> > >> This is a curious output. I=B9m not sure if the log concatenated > >> LifecycleMapping with lib or if that was concatenated prior to the > search. > >> > >> Thanks for your assistance. > >> Will > >> > >> > >> On 6/25/07 1:40 PM, "Will McKinley" <wmc...@ci...> wrote: > >> > >>> Hi again. > >>> > >>> It looks like for a dependency of type =B3lib=B2 the includes zip is = not > >>> downloaded from the remote repository. Is there a reason for this? > >>> > >>> Thanks, > >>> Will > >>> > >>> > >>> On 6/22/07 1:10 AM, "Frederic Simon" <fr...@jf...> wrote: > >>> > >>>> By default the flag "deployInclude" is false, so the XXX-include.zip= file > >> are > >>>> created or downloaded. You can see the configuration params here: > >>>> > >> > http://www.jfrog.org/sites/jade-plugins/latest/jade-plugin-parent/jade-bu= ild- > >>>> plugin-parent/jade-native-plugin/compile-mojo.html#deployInclude > >>>> > >>>> You can also change from zip to jar " > >>>> <includesExtension>jar</includesExtension>". > >>>> And if you have many modules dependant from one another (reactor > >> projects), > >>>> it's faster to use a global includesRootDir for the whole project. > This > >> is > >>>> the directory where all XX-include.zip will be extracted. So instead > of > >>>> extracting all the zip files for each module, the extract happens > only > >> once. > >>>> > >>>> Hope it helps, and thanks for using jade-plugins. > >>>> > >>>> On 6/22/07, Will McKinley <wmc...@ci...> wrote: > >>>>> Hi all, > >>>>> > >>>>> I was wondering when the zip file containing all the h files gets > >> created? > >>>>> I'm attempting to use this plugin to compile a native library to > share > >> with > >>>>> other projects, and when I execute 'mvn install' I see the dll get > >> created, > >>>>> but the zip file is missing. > >>>>> > >>>>> Your help is greatly appreciated. > >>>>> > >>>>> -Will McKinley > >>>>> > >>>>> > >> > ------------------------------------------------------------------------- > >>>>> This SF.net email is sponsored by DB2 Express > >>>>> Download DB2 Express C - the FREE version of DB2 express and take > >>>>> control of your XML. No limits. Just data. Click to get it now. > >>>>> http://sourceforge.net/powerbar/db2/ > >> <http://sourceforge.net/powerbar/db2/> > >>>>> _______________________________________________ > >>>>> Jade-plugins-users mailing list > >>>>> Jad...@li... > >>>>> https://lists.sourceforge.net/lists/listinfo/jade-plugins-users > >>>> > >>>> > >>> > >>> > >>> > >>> > ------------------------------------------------------------------------- > >>> This SF.net email is sponsored by DB2 Express > >>> Download DB2 Express C - the FREE version of DB2 express and take > >>> control of your XML. No limits. Just data. Click to get it now. > >>> http://sourceforge.net/powerbar/db2/ > >>> > >>> _______________________________________________ > >>> Jade-plugins-users mailing list > >>> Jad...@li... > >>> https://lists.sourceforge.net/lists/listinfo/jade-plugins-users > >> > >> > >> > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > Jade-plugins-users mailing list > Jad...@li... > https://lists.sourceforge.net/lists/listinfo/jade-plugins-users > --=20 "CapsLock Key is like rear mirrors in BMW! Who needs them?" freddy33 |
From: Will M. <wmc...@ci...> - 2007-07-02 13:54:10
|
Hi Frederic, The change does not appear to have been published yet. The change from the subversion commit looks correct, but I don=B9t see the effect of the change. For the record, I had to set my repository to =3D=3D> <id>org.jfrog.plugins</id> <name>jfrog-plugins-dist</name> <url>http://www.jfrog.org/artifactory/plugins-releases</ <http://www.jfrog.org/artifactory/plugins-releases> url> I have a plugin repository set to the same thing. My plugin dependency is set to =3D=3D> <groupId>org.jfrog.jade.plugins</groupId> <artifactId>jade-native-plugin</artifactId> <version>1.3-SNAPSHOT</version> On 7/2/07 12:46 AM, "Frederic Simon" <fr...@jf...> wrote: > http://www.jfrog.org/jira/browse/JAPL-35 was solved (If you can test on > 1.3-SNAPSHOT it will be great), I should release 1.3.9 soon. >=20 > On 6/26/07, Will McKinley <wmc...@ci...> wrote: >> Thanks! >>=20 >> The "lib" type is a static library for Windows. While you are at it, ca= n >> you also add "dylib" (Mac dynamic library)? >>=20 >> Regards, >> Will >>=20 >>=20 >> On 6/26/07 11:24 AM, " fr...@jf... <mailto:fr...@jf...> " >> <fr...@jf...> wrote: >>=20 >>> > The issue is that only so, a, and dll are declared to be library that >>> > pom can be dependent on. Sorry for my ignorance but: What is the "lib= " >>> > type? >>> > Anyway I will add a parameter list to identify packages that are libr= ary. >>> > Thanks for reporting this. >>> > >>> > On 6/26/07, Will McKinley <wmc...@ci... <mailto:wmckinle@cisco= .com> >>> > wrote: >>>> >> More information on this: >>>> >> >>>> >> I ran the build with =ADX to see maven debug and found the following. >>>> >> >>>> >> =B3[DEBUG] Error looking up lifecycle mapping to retrieve optional mo= jos. >>>> >> Lifecycle ID: default. Error: Component descriptor cannot be foun= d in >>>> the >>>> >> component repository: >>>> >> org.apache.maven.lifecycle.mapping.LifecycleMappinglib.=B2 >>>> >> >>>> >> This is a curious output. I=B9m not sure if the log concatenated >>>> >> LifecycleMapping with lib or if that was concatenated prior to the >>>> search. >>>> >> >>>> >> Thanks for your assistance. >>>> >> Will >>>> >> >>>> >> >>>> >> On 6/25/07 1:40 PM, "Will McKinley" < wmc...@ci...> wrote: >>>> >> >>>>> >>> Hi again. >>>>> >>> >>>>> >>> It looks like for a dependency of type =B3lib=B2 the includes zip is = not >>>>> >>> downloaded from the remote repository. Is there a reason for thi= s? >>>>> >>> >>>>> >>> Thanks, >>>>> >>> Will >>>>> >>> >>>>> >>> >>>>> >>> On 6/22/07 1:10 AM, "Frederic Simon" <fr...@jf...> wrote: >>>>> >>> >>>>>> >>>> By default the flag "deployInclude" is false, so the XXX-includ= e.zip file >>>> >> are >>>>>> >>>> created or downloaded. You can see the configuration params her= e: >>>>>> >>>> >>>> >>=20 >>>>=20 http://www.jfrog.org/sites/jade-plugins/latest/jade-plugin-parent/jade-buil= d- >>>>>> >>>> plugin-parent/jade-native-plugin/compile- mojo.html#deployInclu= de >>>>>> >>>> >>>>>> >>>> You can also change from zip to jar " >>>>>> >>>> <includesExtension>jar</includesExtension>". >>>>>> >>>> And if you have many modules dependant from one another (reacto= r >>>> >> projects), >>>>>> >>>> it's faster to use a global includesRootDir for the whole proje= ct. This >>>> >> is >>>>>> >>>> the directory where all XX-include.zip will be extracted. So in= stead of=20 >>>>>> >>>> extracting all the zip files for each module, the extract happe= ns only >>>> >> once. >>>>>> >>>> >>>>>> >>>> Hope it helps, and thanks for using jade-plugins. >>>>>> >>>> >>>>>> >>>> On 6/22/07, Will McKinley <wmc...@ci...> wrote: >>>>>>> >>>>> Hi all, >>>>>>> >>>>> >>>>>>> >>>>> I was wondering when the zip file containing all the h files = gets >>>> >> created? >>>>>>> >>>>> I'm attempting to use this plugin to compile a native library= to share >>>> >> with >>>>>>> >>>>> other projects, and when I execute 'mvn install' I see the dl= l get >>>> >> created, >>>>>>> >>>>> but the zip file is missing. >>>>>>> >>>>> >>>>>>> >>>>> Your help is greatly appreciated. >>>>>>> >>>>> >>>>>>> >>>>> -Will McKinley >>>>>>> >>>>> >>>>>>> >>>>> >>>> >>=20 >>>> ----------------------------------------------------------------------= --- >>>>>>> >>>>> This SF.net email is sponsored by DB2 Express >>>>>>> >>>>> Download DB2 Express C - the FREE version of DB2 express and = take >>>>>>> >>>>> control of your XML. No limits. Just data. Click to get it no= w. >>>>>>> >>>>> http://sourceforge.net/powerbar/db2/ >>>> >> < http://sourceforge.net/powerbar/db2/ >>>> <http://sourceforge.net/powerbar/db2/> > >>>>>>> >>>>> _______________________________________________ >>>>>>> >>>>> Jade-plugins-users mailing list >>>>>>> >>>>> Jad...@li... >>>>>>> >>>>> https://lists.sourceforge.net/lists/listinfo/jade-plugins-use= rs >>>>>> >>>>=20 >>>>>> >>>> >>>>> >>> >>>>> >>> >>>>> >>> >>>>> >>>=20 >>>>> ---------------------------------------------------------------------= ---- >>>>> >>> This SF.net email is sponsored by DB2 Express >>>>> >>> Download DB2 Express C - the FREE version of DB2 express and take >>>>> >>> control of your XML. No limits. Just data. Click to get it now. >>>>> >>> http://sourceforge.net/powerbar/db2/ >>>>> >>> >>>>> >>> _______________________________________________ >>>>> >>> Jade-plugins-users mailing list >>>>> >>> Jad...@li... >>>>> >>> https://lists.sourceforge.net/lists/listinfo/jade-plugins-users >>>> >> >>>> >>=20 >>>> >> >>> > >>=20 >> ------------------------------------------------------------------------= - >> This SF.net email is sponsored by DB2 Express >> Download DB2 Express C - the FREE version of DB2 express and take >> control of your XML. No limits. Just data. Click to get it now. >> http://sourceforge.net/powerbar/db2/ >> _______________________________________________ >> Jade-plugins-users mailing list >> Jad...@li... >> https://lists.sourceforge.net/lists/listinfo/jade-plugins-users >> <https://lists.sourceforge.net/lists/listinfo/jade-plugins-users> >=20 >=20 |
From: Frederic S. <fr...@jf...> - 2007-07-02 14:22:25
|
The changes are on http://www.jfrog.org/artifactory/plugins-snapshots<http://www.jfrog.org/art= ifactory/plugins-releases%3C/>with version 1.3-SNAPSHOT. On 7/2/07, Will McKinley <wmc...@ci...> wrote: > > Hi Frederic, > > The change does not appear to have been published yet. The change from > the subversion commit looks correct, but I don't see the effect of the > change. > > For the record, I had to set my repository to =3D=3D> > > <id>org.jfrog.plugins</id> > <name>jfrog-plugins-dist</name> > <url>http://www.jfrog.org/artifactory/plugins-releases</<http://www.jfrog= .org/artifactory/plugins-releases%3C/> > url> > > I have a plugin repository set to the same thing. > > My plugin dependency is set to =3D=3D> > > <groupId>org.jfrog.jade.plugins</groupId> > <artifactId>jade-native-plugin</artifactId> > <version>1.3-SNAPSHOT</version> > > > On 7/2/07 12:46 AM, "Frederic Simon" <fr...@jf...> wrote: > > http://www.jfrog.org/jira/browse/JAPL-35 was solved (If you can test on > 1.3-SNAPSHOT it will be great), I should release 1.3.9 soon. > > On 6/26/07, *Will McKinley* <wmc...@ci...> wrote: > > Thanks! > > The "lib" type is a static library for Windows. While you are at it, can > you also add "dylib" (Mac dynamic library)? > > Regards, > Will > > > On 6/26/07 11:24 AM, " fr...@jf... <mailto:fr...@jf...><freds@jfr= og.org>" < > fr...@jf...> wrote: > > > The issue is that only so, a, and dll are declared to be library that > > pom can be dependent on. Sorry for my ignorance but: What is the "lib" > > type? > > Anyway I will add a parameter list to identify packages that are > library. > > Thanks for reporting this. > > > > On 6/26/07, Will McKinley <wmc...@ci... > <mailto:wmc...@ci...> <wmc...@ci...> > wrote: > >> More information on this: > >> > >> I ran the build with =96X to see maven debug and found the following. > >> > >> "[DEBUG] Error looking up lifecycle mapping to retrieve optional mojos= . > > >> Lifecycle ID: default. Error: Component descriptor cannot be found i= n > the > >> component repository: > >> org.apache.maven.lifecycle.mapping.LifecycleMappinglib." > >> > >> This is a curious output. I'm not sure if the log concatenated > >> LifecycleMapping with lib or if that was concatenated prior to the > search. > >> > >> Thanks for your assistance. > >> Will > >> > >> > >> On 6/25/07 1:40 PM, "Will McKinley" < wmc...@ci...> wrote: > >> > >>> Hi again. > >>> > >>> It looks like for a dependency of type "lib" the includes zip is not > >>> downloaded from the remote repository. Is there a reason for this? > >>> > >>> Thanks, > >>> Will > >>> > >>> > >>> On 6/22/07 1:10 AM, "Frederic Simon" <fr...@jf...> wrote: > >>> > >>>> By default the flag "deployInclude" is false, so the XXX-include.zip= file > >> are > >>>> created or downloaded. You can see the configuration params here: > >>>> > >> > http://www.jfrog.org/sites/jade-plugins/latest/jade-plugin-parent/jade-bu= ild- > >>>> plugin-parent/jade-native-plugin/compile- mojo.html#deployInclude > >>>> > >>>> You can also change from zip to jar " > >>>> <includesExtension>jar</includesExtension>". > >>>> And if you have many modules dependant from one another (reactor > >> projects), > >>>> it's faster to use a global includesRootDir for the whole project. > This > >> is > >>>> the directory where all XX-include.zip will be extracted. So instead > of > >>>> extracting all the zip files for each module, the extract happens > only > >> once. > >>>> > >>>> Hope it helps, and thanks for using jade-plugins. > >>>> > >>>> On 6/22/07, Will McKinley <wmc...@ci...> wrote: > >>>>> Hi all, > >>>>> > >>>>> I was wondering when the zip file containing all the h files gets > >> created? > >>>>> I'm attempting to use this plugin to compile a native library to > share > >> with > >>>>> other projects, and when I execute 'mvn install' I see the dll get > >> created, > >>>>> but the zip file is missing. > >>>>> > >>>>> Your help is greatly appreciated. > >>>>> > >>>>> -Will McKinley > >>>>> > >>>>> > >> > ------------------------------------------------------------------------- > >>>>> This SF.net email is sponsored by DB2 Express > >>>>> Download DB2 Express C - the FREE version of DB2 express and take > >>>>> control of your XML. No limits. Just data. Click to get it now. > >>>>> http://sourceforge.net/powerbar/db2/ > >> < http://sourceforge.net/powerbar/db2/ > <http://sourceforge.net/powerbar/db2/><http://sourceforge.net/powerbar/db= 2/>> > >>>>> _______________________________________________ > >>>>> Jade-plugins-users mailing list > >>>>> Jad...@li... > >>>>> https://lists.sourceforge.net/lists/listinfo/jade-plugins-users > >>>> > >>>> > >>> > >>> > >>> > >>> > ------------------------------------------------------------------------- > >>> This SF.net email is sponsored by DB2 Express > >>> Download DB2 Express C - the FREE version of DB2 express and take > >>> control of your XML. No limits. Just data. Click to get it now. > >>> http://sourceforge.net/powerbar/db2/ > >>> > >>> _______________________________________________ > >>> Jade-plugins-users mailing list > >>> Jad...@li... > >>> https://lists.sourceforge.net/lists/listinfo/jade-plugins-users > >> > >> > >> > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > Jade-plugins-users mailing list > Jad...@li... > https://lists.sourceforge.net/lists/listinfo/jade-plugins-users < > https://lists.sourceforge.net/lists/listinfo/jade-plugins-users> > > > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > Jade-plugins-users mailing list > Jad...@li... > https://lists.sourceforge.net/lists/listinfo/jade-plugins-users > > --=20 "CapsLock Key is like rear mirrors in BMW! Who needs them?" freddy33 |
From: Will M. <wmc...@ci...> - 2007-07-02 15:19:09
|
That works. Thanks! On 7/2/07 10:22 AM, "Frederic Simon" <fr...@jf...> wrote: > The changes are on http://www.jfrog.org/artifactory/plugins-snapshots > <http://www.jfrog.org/artifactory/plugins-releases%3C/> with version > 1.3-SNAPSHOT. >=20 > On 7/2/07, Will McKinley <wmc...@ci...> wrote: >> Hi Frederic, >>=20 >> The change does not appear to have been published yet. The change from = the >> subversion commit looks correct, but I don't see the effect of the chang= e. >>=20 >> For the record, I had to set my repository to =3D=3D> >>=20 >> <id>org.jfrog.plugins</id> >> <name>jfrog-plugins-dist</name> >> <url>http://www.jfrog.org/artifactory/plugins-releases</ >> <http://www.jfrog.org/artifactory/plugins-releases> >> <http://www.jfrog.org/artifactory/plugins-releases%3C/> url> >>=20 >> I have a plugin repository set to the same thing. >>=20 >> My plugin dependency is set to =3D=3D> >>=20 >> <groupId>org.jfrog.jade.plugins</groupId> >> <artifactId>jade-native-plugin</artifactId> >> <version>1.3-SNAPSHOT</version> >>=20 >>=20 >> On 7/2/07 12:46 AM, "Frederic Simon" <fr...@jf...> wrote: >>=20 >>> http://www.jfrog.org/jira/browse/JAPL-35 was solved (If you can test on >>> 1.3-SNAPSHOT it will be great), I should release 1.3.9 soon. >>>=20 >>> On 6/26/07, Will McKinley <wmc...@ci...> wrote: >>>> Thanks! >>>>=20 >>>> The "lib" type is a static library for Windows. While you are at it, = can >>>> you also add "dylib" (Mac dynamic library)? >>>>=20 >>>> Regards, >>>> Will >>>>=20 >>>>=20 >>>> On 6/26/07 11:24 AM, " fr...@jf... <mailto:fr...@jf...> " >>>> <fr...@jf...> wrote: >>>>=20 >>>>> > The issue is that only so, a, and dll are declared to be library th= at >>>>> > pom can be dependent on. Sorry for my ignorance but: What is the "l= ib" >>>>> > type? >>>>> > Anyway I will add a parameter list to identify packages that are >>>>> library. >>>>> > Thanks for reporting this. >>>>> > >>>>> > On 6/26/07, Will McKinley <wmc...@ci... >>>>> <mailto:wmc...@ci...> > wrote: >>>>>> >> More information on this: >>>>>> >> >>>>>> >> I ran the build with =ADX to see maven debug and found the followin= g. >>>>>> >> >>>>>> >> "[DEBUG] Error looking up lifecycle mapping to retrieve optional >>>>>> mojos.=20 >>>>>> >> Lifecycle ID: default. Error: Component descriptor cannot be fo= und >>>>>> in the >>>>>> >> component repository: >>>>>> >> org.apache.maven.lifecycle.mapping.LifecycleMappinglib." >>>>>> >> >>>>>> >> This is a curious output. I'm not sure if the log concatenated >>>>>> >> LifecycleMapping with lib or if that was concatenated prior to th= e >>>>>> search. >>>>>> >> >>>>>> >> Thanks for your assistance. >>>>>> >> Will >>>>>> >> >>>>>> >> >>>>>> >> On 6/25/07 1:40 PM, "Will McKinley" < wmc...@ci...> wrote: >>>>>> >> >>>>>>> >>> Hi again. >>>>>>> >>> >>>>>>> >>> It looks like for a dependency of type "lib" the includes zip i= s not >>>>>>> >>> downloaded from the remote repository. Is there a reason for t= his? >>>>>>> >>> >>>>>>> >>> Thanks, >>>>>>> >>> Will >>>>>>> >>> >>>>>>> >>> >>>>>>> >>> On 6/22/07 1:10 AM, "Frederic Simon" <fr...@jf...> wrote: >>>>>>> >>> >>>>>>>> >>>> By default the flag "deployInclude" is false, so the >>>>>>>> XXX-include.zip file >>>>>> >> are >>>>>>>> >>>> created or downloaded. You can see the configuration params h= ere: >>>>>>>> >>>> >>>>>> >>=20 >>>>>> http://www.jfrog.org/sites/jade-plugins/latest/jade-plugin-parent/ja= de-bu >>>>>> ild- =20 >>>>>> <http://www.jfrog.org/sites/jade-plugins/latest/jade-plugin-parent/j= ade-b >>>>>> uild->=20 >>>>>>>> >>>> plugin-parent/jade-native-plugin/compile- mojo.html#deployInc= lude >>>>>>>> >>>> >>>>>>>> >>>> You can also change from zip to jar " >>>>>>>> >>>> <includesExtension>jar</includesExtension>". >>>>>>>> >>>> And if you have many modules dependant from one another (reac= tor >>>>>> >> projects), >>>>>>>> >>>> it's faster to use a global includesRootDir for the whole pro= ject. This >>>>>> >> is >>>>>>>> >>>> the directory where all XX-include.zip will be extracted. So >>>>>>>> instead of >>>>>>>> >>>> extracting all the zip files for each module, the extract hap= pens only >>>>>> >> once. >>>>>>>> >>>> >>>>>>>> >>>> Hope it helps, and thanks for using jade-plugins. >>>>>>>> >>>> >>>>>>>> >>>> On 6/22/07, Will McKinley <wmc...@ci...> wrote: >>>>>>>>> >>>>> Hi all, >>>>>>>>> >>>>> >>>>>>>>> >>>>> I was wondering when the zip file containing all the h file= s gets=20 >>>>>> >> created? >>>>>>>>> >>>>> I'm attempting to use this plugin to compile a native libra= ry to share >>>>>> >> with >>>>>>>>> >>>>> other projects, and when I execute 'mvn install' I see the = dll get=20 >>>>>> >> created, >>>>>>>>> >>>>> but the zip file is missing. >>>>>>>>> >>>>> >>>>>>>>> >>>>> Your help is greatly appreciated. >>>>>>>>> >>>>> >>>>>>>>> >>>>> -Will McKinley >>>>>>>>> >>>>> >>>>>>>>> >>>>> >>>>>> >>=20 >>>>>> --------------------------------------------------------------------= ----- >>>>>>>>> >>>>> This SF.net email is sponsored by DB2 Express >>>>>>>>> >>>>> Download DB2 Express C - the FREE version of DB2 express an= d take=20 >>>>>>>>> >>>>> control of your XML. No limits. Just data. Click to get it = now. >>>>>>>>> >>>>> http://sourceforge.net/powerbar/db2/ >>>>>> >> < http://sourceforge.net/powerbar/db2/ >>>>>> <http://sourceforge.net/powerbar/db2/> > >>>>>>>>> >>>>> _______________________________________________ >>>>>>>>> >>>>> Jade-plugins-users mailing list >>>>>>>>> >>>>> Jad...@li... >>>>>>>>> >>>>> https://lists.sourceforge.net/lists/listinfo/jade-plugins-u= sers >>>>>>>>> <https://lists.sourceforge.net/lists/listinfo/jade-plugins-users> >>>>>>>> >>>>=20 >>>>>>>> >>>> >>>>>>> >>> >>>>>>> >>> >>>>>>> >>> >>>>>>> >>>=20 >>>>>>>=20 ------------------------------------------------------------------------- >>>>>>> >>> This SF.net email is sponsored by DB2 Express >>>>>>> >>> Download DB2 Express C - the FREE version of DB2 express and ta= ke >>>>>>> >>> control of your XML. No limits. Just data. Click to get it now. >>>>>>> >>> http://sourceforge.net/powerbar/db2/ >>>>>>> >>> >>>>>>> >>> _______________________________________________ >>>>>>> >>> Jade-plugins-users mailing list >>>>>>> >>> Jad...@li... >>>>>>> >>> https://lists.sourceforge.net/lists/listinfo/jade-plugins-users >>>>>>> <https://lists.sourceforge.net/lists/listinfo/jade-plugins-users> >>>>>> >> >>>>>> >>=20 >>>>>> >> >>>>> > >>>>=20 >>>> ----------------------------------------------------------------------= --- >>>> This SF.net email is sponsored by DB2 Express >>>> Download DB2 Express C - the FREE version of DB2 express and take >>>> control of your XML. No limits. Just data. Click to get it now. >>>> http://sourceforge.net/powerbar/db2/ >>>> _______________________________________________ >>>> Jade-plugins-users mailing list >>>> Jad...@li... >>>> https://lists.sourceforge.net/lists/listinfo/jade-plugins-users < >>>> https://lists.sourceforge.net/lists/listinfo/jade-plugins-users >>>> <https://lists.sourceforge.net/lists/listinfo/jade-plugins-users> > >>>=20 >>>=20 >>=20 >>=20 >> ------------------------------------------------------------------------= - >> This SF.net email is sponsored by DB2 Express >> Download DB2 Express C - the FREE version of DB2 express and take >> control of your XML. No limits. Just data. Click to get it now. >> http://sourceforge.net/powerbar/db2/ >> _______________________________________________ >> Jade-plugins-users mailing list >> Jad...@li... >> https://lists.sourceforge.net/lists/listinfo/jade-plugins-users >>=20 >=20 >=20 |