Re: [JBoss-dev] compilation and packaging of vendor specific code

2002-09-03 Thread David Jencks
A couple of other possibilities are to change the code to use reflection so the Oracle driver doesn't need to be present to compile, or to write a fake Oracle class that just defines the needed methods and that we can compile, but not include the fake class in the build. If the dependencies are

Re: [JBoss-dev] compilation and packaging of vendor specific code

2002-09-03 Thread Dain Sundstrom
I need it for JBossCMP also, so check in the binary. -dain David Jencks wrote: A couple of other possibilities are to change the code to use reflection so the Oracle driver doesn't need to be present to compile, or to write a fake Oracle class that just defines the needed methods and that we

[JBoss-dev] compilation and packaging of vendor specific code

2002-09-02 Thread Igor Fedorenko
Hi, I have oracle specific xa wrapper that is required to use oracle database in distributed transactions managed by jboss. I want to check this wrapper into cvs but do not know what is the best way to do it. The wrapper needs oracle jdbc driver to compile, so here is my question: how do we