Re: Maven xmlbeans plugin - XML-BEANS compiled schema: Incompatible minor version - expecting up to 23, got 24

2008-02-12 Thread amit kumar
I was getting the same error at Integration setup ( not at compile time). I had manually installed the 2.3.0 version of xbean and put it as dependency to the modules that required xbean.jar to compile. Or the better option as told by Basel is to specify an older version of xmlbeans plugin

Re: Maven xmlbeans plugin - XML-BEANS compiled schema: Incompatible minor version - expecting up to 23, got 24

2008-02-11 Thread Basel Naamna
Specifying older version of xmlbeans plugin in the pom.xml file fixes the problem. Basel Naamna wrote: > > I'm using maven xmlbeans plugin to compile a schema, but when I run the > project, I get: > Caused by: org.apache.xmlbeans.SchemaTypeLoaderException: XML-BEANS

Maven xmlbeans plugin - XML-BEANS compiled schema: Incompatible minor version - expecting up to 23, got 24

2008-02-10 Thread Basel Naamna
I'm using maven xmlbeans plugin to compile a schema, but when I run the project, I get: Caused by: org.apache.xmlbeans.SchemaTypeLoaderException: XML-BEANS compiled schema: Incompatible minor version - expecting up to 23, got 24 ... any ideas? -- View this message in context:

maven-xmlbeans-plugin: java.lang.ArrayIndexOutOfBoundsException: 3

2008-01-29 Thread Jan Torben Heuer
Hi, I added the sourceSchema directive to my pom (see earlier posts...). Since then, xmlbeans doesn't compile. Here are the pom.xml configs: org.codehaus.mojo xmlbeans-maven-plugin

maven-xmlbeans-plugin exclude files?

2008-01-28 Thread Jan Torben Heuer
Hi, I try to build xsd schema files with xmlbeans. It works so far, but I have to either exclude the 'Examples' directory or to only include the *.xsd files in the schemaDirectory (not those in subfolders). According to the plugin-description site, there is nothing like in-/exclude, right? Is th

Re: which xmlbeans lib for the xmlbeans plugin?

2007-07-18 Thread Severin Ecker
Hi, first of all xmlbeans xmlbeans 2.3.0 the groupId here _should_ be changed to 'org.apache.xmlbeans' (this was changed somewhere around version 2.2.0, check the pom file of the xmlbeans lib). it was just located in the wrong repository location here i'm using or

which xmlbeans lib for the xmlbeans plugin?

2007-07-18 Thread Jan Torben Heuer
Hi, I am compiling my schema files with the current xmlbeans plugin - but which xmlbeans lib do I have to include as dependency in my code? I get this error on startup, so I think i am using the wrong version > Incompatible minor version - expecting up to 23, got

RE: [m2] XMLBeans Plugin

2006-11-09 Thread Peter . Pilgrim
> -Original Message- > From: Pilgrim, Peter ==== > > I written my solution as a blog instead (How to use Maven 2.0 > XMLBeans Plug-in) > http://jroller.com/page/peter_pilgrim?entry=how_to_use_maven_2 > One thing I did not quite figure out for myself. Why would people want to use `

RE: [m2] XMLBeans Plugin

2006-11-08 Thread Peter . Pilgrim
> -Original Message- > From: Pilgrim, Peter ==== > > > > -Original Message- > ==== > > > > > -Original Message- > > > From: Pilgrim, Peter > > > Sent: 01 November 2006 17:46 > >

RE: [m2] XMLBeans Plugin

2006-11-02 Thread Peter . Pilgrim
> -Original Message- ==== > > > -Original Message- > > From: Pilgrim, Peter > > Sent: 01 November 2006 17:46 > > To: 'Maven Users List' > > Subject: [m2] XMLBeans Plugin > > > > > > Maven 2 XMLBean Plug

RE: [m2] XMLBeans Plugin

2006-11-01 Thread Peter . Pilgrim
> -Original Message- > From: Pilgrim, Peter > Sent: 01 November 2006 17:46 > To: 'Maven Users List' > Subject: [m2] XMLBeans Plugin > > > Maven 2 XMLBean Plugin > http://mojo.codehaus.org/xmlbeans-maven-plugin/index.html > > I am trying to

[m2] XMLBeans Plugin

2006-11-01 Thread Peter . Pilgrim
Maven 2 XMLBean Plugin http://mojo.codehaus.org/xmlbeans-maven-plugin/index.html I am trying to get the plugin to generate the java classes from XSD files in the same way as the `scomp' program. I stored the schema in the `src/main/xsd' folder. Is the command `mvn xmlbeans:xmlbeans' suppose to

Re: XMLBeans Plugin - include subdirectories

2006-10-14 Thread cameron101
It would be great if the mvn2 pluggin supported file sets as per the ant target but so far as I can see it does not :-( An alternative is (it's not a great solution but it's workable) is to create a separate project/module with all your .xsd, nested in the desired sub directories etc. Set this pr

XMLBeans Plugin - include subdirectories

2006-08-14 Thread Adrian Shum
Dear all, I am trying XMLBeans plugins in maven2. I'd like to know if there is any way to include subdirectories of the schema directory? As we are organizing the XSDs in directories now. At least, is there anyway to include multiple XSD directory for generation of JAR? Thanks a lot for your he

RE: Re: XMLBeans plugin for maven1?

2006-06-29 Thread Bravo, Kris
@maven.apache.org Subject: Re: XMLBeans plugin for maven1? Is this the latest version (for maven 1)? http://issues.apache.org/jira/browse/XMLBEANS-124 Thanks, Jan "jan_bar" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi, > > where can I found XMLBeans plugin

Re: XMLBeans plugin for maven1?

2006-06-28 Thread David Jencks
I think so. I recommend switching to maven 2, the m2 xmlbeans plugin is being maintained more actively. thanks david jencks On Jun 21, 2006, at 5:05 AM, jan_bar wrote: Is this the latest version (for maven 1)? http://issues.apache.org/jira/browse/XMLBEANS-124 Thanks, Jan "ja

Re: XMLBeans plugin for maven1?

2006-06-21 Thread jan_bar
Is this the latest version (for maven 1)? http://issues.apache.org/jira/browse/XMLBEANS-124 Thanks, Jan "jan_bar" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi, > > where can I found XMLBeans plugin for maven 1 (-1.1

XMLBeans plugin for maven1?

2006-06-21 Thread jan_bar
Hi, where can I found XMLBeans plugin for maven 1 (-1.1-beta-2)? Thanks, Jan - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: XMLBeans Plugin + Eclipse Mayhem

2006-05-05 Thread Stephen Duncan
same problem and I think I have a working solution. The key is, that I wrote an additional plugin, that would generate a jar containing the generated sources and classes from xmlbeans. My normal project now includes this project. > > > > The process is like this: > > > > Th

Re: XMLBeans Plugin + Eclipse Mayhem

2006-05-05 Thread Wilfred Springer
> > > > Yes I had the same problem and I think I have a working solution. The key > > is, that I wrote an additional plugin, that would generate a jar containing > > the generated sources and classes from xmlbeans. My normal project now > > includes this project. &g

AW: XMLBeans Plugin + Eclipse Mayhem

2006-05-05 Thread Domsch, Christian
Maven Users List > Betreff: Re: XMLBeans Plugin + Eclipse Mayhem > > I don't think I understand why you did this. The normal > xmlbeans plugin will produce a jar with the > xmlbeans-generated code by default. > I think Wilfred's problem is just that the eclipse:ec

Re: XMLBeans Plugin + Eclipse Mayhem

2006-05-05 Thread Stephen Duncan
I don't think I understand why you did this. The normal xmlbeans plugin will produce a jar with the xmlbeans-generated code by default. I think Wilfred's problem is just that the eclipse:eclipse is giving him a project-dependcy for the sibling projects. Since Eclispe isn't

Re: AW: XMLBeans Plugin + Eclipse Mayhem

2006-05-05 Thread Wilfred Springer
gt; project now includes this project. > > The process is like this: > > The normal XMLBeans Plugin generates ist sources and classes and puts > them to a defined location. My plugin picks up thoses resources at the > same location and builds the jar and installes it into the

AW: XMLBeans Plugin + Eclipse Mayhem

2006-05-05 Thread Domsch, Christian
XMLBeans Plugin generates ist sources and classes and puts them to a defined location. My plugin picks up thoses resources at the same location and builds the jar and installes it into the local repository. For this, my plugin runs in the process-resources phase. Now the project insode eclipse

XMLBeans Plugin + Eclipse Mayhem

2006-05-04 Thread Wilfred Springer
;project-client' does not always see the classes or source files generated from the XMLBeans plugin. So Eclipse is giving a lot of warnings for missing class file definitions, I don't have code completion, and my tests do not always run when running it from Eclipse. So the question is: h

[m2.0.3] maven-xmlbeans-plugin: mulitple schema directories

2006-04-13 Thread John J. Franey
My src/main/xsd directory has subdirectories each with schema files: src/main/xsd/aaa/bbb/ccc.xsd src/main/xsd/ddd/eee/fff.xsd ... I've figured out to do: org.codehaus.mojo xmlbeans-maven-plugin 2.0 generate-sources xmlb

[m2] XMLBeans Plugin and Surefire Reports

2006-01-20 Thread Kieran Brady
Hello list :) We've recently moved from using XMLBeans 1 via the antrun plugin to using the codehaus xmlbeans plugin for m2 and it has introduced a small problem inside our JUnit XML reports in that they have two 'xml' declarations at the top of the file: [EMAIL PROTECTED]:s

Re: xmlbeans plugin

2006-01-06 Thread S . Bloch
espond to "Maven Users List" To "Maven Users List" cc Subject xmlbeans plugin John Wells (Aziz) [EMAIL PROTECTED] I am trying to use the XML beans plugin from http://mojo.codehaus.org/xmlbeans-maven-plugin/ However, I get the f

RE: xmlbeans plugin

2006-01-06 Thread John Wells
I filed a JIRA issue with xmlbeans: http://jira.codehaus.org/browse/MOJO-222 John Wells (Aziz) [EMAIL PROTECTED] -Original Message- From: Napoleon Esmundo Ramirez [mailto:[EMAIL PROTECTED] Sent: Thursday, January 05, 2006 10:04 PM To: Maven Users List Subject: Re: xmlbeans plugin

Re: xmlbeans plugin

2006-01-05 Thread Napoleon Esmundo Ramirez
Hello! Looks like it's not in the central repo. You could file a JIRA issue on that in the MAVENUPLOAD space. :) Nap On 1/6/06, John Wells <[EMAIL PROTECTED]> wrote: > > > > John Wells (Aziz) > [EMAIL PROTECTED] > > > I am trying to use the XML beans plugin from > http://mojo.codehaus.org/xmlbe

xmlbeans plugin

2006-01-05 Thread John Wells
John Wells (Aziz) [EMAIL PROTECTED] I am trying to use the XML beans plugin from http://mojo.codehaus.org/xmlbeans-maven-plugin/ However, I get the following: [ERROR] BUILD ERROR [INFO] -- --- [INFO] Failed to resolve artifact. GroupId:

Re: [m2] xmlbeans plugin

2005-12-21 Thread Kaare Nilsen
e else. > >>> > >>> Regards > >>> > >>> Nathan > >>> > >>> Nathan Sowatskey - Technical Leader, NMTG CTO Engineering - > >>> +34-638-083-675, +34-91-201-2139 - AIM NathanCisco - > >>> [EMAIL PROTECTED] &

Re: [m2] xmlbeans plugin

2005-12-21 Thread Nathan Sowatskey
TO Engineering - +34-638-083-675, +34-91-201-2139 - AIM NathanCisco - [EMAIL PROTECTED] On 20 Dec 2005, at 16:33, Paolo Donà wrote: Hi guys, I'm trying to use the xmlbeans plugin but it fails saying that xmlbeans-jsr173-api-2.0-dev.jar is not available. I cannot find it on ibiblio.. can s

Re: [m2] xmlbeans plugin

2005-12-21 Thread Paolo Donà
IL PROTECTED] > > > > On 20 Dec 2005, at 16:33, Paolo Donà wrote: > > > > > Hi guys, > > > I'm trying to use the xmlbeans plugin but it fails saying that > > > xmlbeans

Re: [m2] xmlbeans plugin

2005-12-21 Thread Paolo Donà
ngineering - > +34-638-083-675, +34-91-201-2139 - AIM NathanCisco - [EMAIL PROTECTED] > > On 20 Dec 2005, at 16:33, Paolo Donà wrote: > > > Hi guys, > > I'm trying to use the xmlbeans plugin but it fails saying that > > xmlbeans-jsr173-api-2.0-dev.jar is not avai

Re: [m2] xmlbeans plugin

2005-12-20 Thread Nathan Sowatskey
wrote: Hi guys, I'm trying to use the xmlbeans plugin but it fails saying that xmlbeans-jsr173-api-2.0-dev.jar is not available. I cannot find it on ibiblio.. can someone help my finding this? Regards, Paolo ** - To unsu

[m2] xmlbeans plugin

2005-12-20 Thread Paolo Donà
Hi guys, I'm trying to use the xmlbeans plugin but it fails saying that xmlbeans-jsr173-api-2.0-dev.jar is not available. I cannot find it on ibiblio.. can someone help my finding this? Regards, Paolo **

Re: [m2] xmlbeans plugin

2005-11-16 Thread Pete
I am using the XMLBeans plugin , I didn't install it I just specified xmlbeans xbean 2.0.0 xmlbeans xmlbeans-jsr17

Re: [m2] xmlbeans plugin

2005-11-16 Thread Kaare Nilsen
his. i have the missing jars, but do not want do send it to everyone on the mailinglist, so if you want me to send them to you, please just drop me a mail regards Kaare On 16/11/05, Wilfred Springer <[EMAIL PROTECTED]> wrote: > Hi Robert, > > Have you figured out a way to work around this? I'm ru

Re: [m2] xmlbeans plugin

2005-11-16 Thread Wilfred Springer
Hi Robert, Have you figured out a way to work around this? I'm running into the same problem. Thanks, Wilfred On Sat, 2005-10-29 at 14:50, Robert Biernat wrote: > Hi, > > > > I'm trying to install the xml beans plugin to my local repository after > checking it out from the codehaus subversi

Excluding class files generated by xmlbeans plugin from resulting jar

2005-11-14 Thread Brian Bonner
I have several schemas that are used by test cases. I'd like them to NOT appear in the jar file that results from mvn:install. The schemas are generating java source using the xmlbeans plugin, and they're classes are being generated at target/classes I tried overriding the loca

[m2] xmlbeans plugin

2005-10-29 Thread Robert Biernat
Hi, I'm trying to install the xml beans plugin to my local repository after checking it out from the codehaus subversion repository. The pom has some references to stax-1.1.1-dev and xmlbeans-jsr173-api-2.0-dev, which it cannot find in the ibiblio or codehaus repositories. Has anyone got this p

RE: Where to find Maven-xmlbeans-plugin and documentation ?

2005-04-25 Thread Adam Hardy
> -Original Message- > From: David Jencks [mailto:[EMAIL PROTECTED] > Sent: 25 April 2005 16:20 > > I see you haven't got to that 'compilation to jar' > functionality - or > > are you planning on deprecating it? > > I have no use for it (I need to package the xmlbeans classes with > pr

Re: Where to find Maven-xmlbeans-plugin and documentation ?

2005-04-25 Thread David Jencks
On Apr 25, 2005, at 7:51 AM, Adam Hardy wrote: -Original Message- From: David Jencks [mailto:[EMAIL PROTECTED] Sent: 23 April 2005 17:49 To: Maven Users List Subject: Re: Where to find Maven-xmlbeans-plugin and documentation ? I more or less recommend using xmlbeans 2. The plugin is here

RE: Where to find Maven-xmlbeans-plugin and documentation ?

2005-04-25 Thread Adam Hardy
-Original Message- From: David Jencks [mailto:[EMAIL PROTECTED] Sent: 23 April 2005 17:49 To: Maven Users List Subject: Re: Where to find Maven-xmlbeans-plugin and documentation ? >I more or less recommend using xmlbeans 2. The plugin is here: >http://issues.apache.org/jira/

Re: Where to find Maven-xmlbeans-plugin and documentation ?

2005-04-24 Thread Haryon
4 > > and there are some instructions in the src jar. > > You might have to build xmlbeans from source -- I found an additional > bug after the v1 release but I don't recall if it broke the maven build > or the use of xmlbeans v2 in geronimo. > > If you want to use xm

Re: Where to find Maven-xmlbeans-plugin and documentation ?

2005-04-23 Thread David Jencks
source -- I found an additional bug after the v1 release but I don't recall if it broke the maven build or the use of xmlbeans v2 in geronimo. If you want to use xmlbeans 1, the plugin is part of geronimo, plugins/geronimo-xmlbeans-plugin. The instructions are similar or identical. If you

Where to find Maven-xmlbeans-plugin and documentation ?

2005-04-23 Thread Haryon
And who exactly is developping it right now ? I found a geronimo maven xmlbeans plugin "maven site" but there is no documentation at all, no goal list, no properties, so I'm clueless at how I could download and use it for my personnal use. thanks in advance if you can guide me

Re: JAXB or XMLBeans plugin

2004-11-04 Thread John McLaughlin
If data binding is what you want, check out Castor as well. I settled on that for a project after trying both XMLBeans and JAXB (Sun implementation). I find the API generated by XMLBeans to be very unwieldy, though it does work. Sun JAXB is much nicer to work with, however the implementatio

Re: JAXB or XMLBeans plugin

2004-11-04 Thread David Jencks
There's an xmlbeans plugin we've been using in geronimo for a long time. I think it got added to the xmlbeans code base but I don't know that they released it. You can download it from http://www.ibiblio.org/maven/geronimo/plugins/ I don't recall how many instructions I in

Re: JAXB or XMLBeans plugin

2004-11-04 Thread Brett Porter
I'm getting around to that :) You can still download JWSDP 1.2, or you can simply update the JARs in project.xml - it should work. I believe geronimo has an XMLBeans maven plugin. - Brett On Thu, 4 Nov 2004 15:23:35 -0500, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > I found a JAXB plu

JAXB or XMLBeans plugin

2004-11-04 Thread irv
I found a JAXB plugin on the sourceforge site, but it seems out of date with the newer JWSDB releases. (It wants jar files that no longer exist) Has anyone seen an updated one anywhere? I could also switch to XMLBeans if there was an up to date plugin for it. Irv