Page 1 of 1

Howto add java builder to an Oxygen xml project?

Posted: Thu Dec 15, 2005 3:04 pm
by bwinspur
Running: eclipse 3.1, oxygen 6.1.0

I am using an oxygen project to maintain a jaxb binding for an evolving xmlschema.

The project has an ant build file that does jaxb's xjc compile of the xmlschema into
java, compiles the java, and then builds a classes jar and a source jar, without
any problems. However, in a separate application project, the jaxb unmarshall is
rejecting a schema-instance file that validates OK against the schema.

To nail this bug, I want to embed an unmarshalling test in my oygen project, to be
performed by the build, but found that oxygen projects do not include java-builder.

How do I add the java builder into an oxygen project?

Do I have to recreate my Oxygen project as a Java Project ?

Posted: Fri Dec 16, 2005 11:08 am
by sorin_ristache
Hello,

<oXygen/> projects do not provide a Java class builder. For building Java classes in a project inside Eclipse you have to create the project as a Java one.

Regards,
Sorin

java builder

Posted: Mon Dec 19, 2005 7:03 pm
by bwinspur
thanks for your response,
Bill.