How to make .java files in src/main/resources available at runtime?

2008-12-02 Thread Geoffrey Kwan
Hi, I'm trying to include some .java files in my src/main/resources but at runtime those files get compiled and only the .class files are available. I have placed .jpg, .txt, and .java files in my src/main/resources and what ends up there at runtime is .jpg, .txt, and .class files. How can I m

Re: How to make .java files in src/main/resources available at runtime?

2008-12-03 Thread martijnverburg
Hi Geoffrey, I'm curious, why does another application need to interact with your Java source code? Is that really what needs to occur? Cheers, Martijn On Dec 3, 2008 2:57am, Geoffrey Kwan <[EMAIL PROTECTED]> wrote: Hi, I'm trying to include some .java files in my src/main/resources but at

Re: How to make .java files in src/main/resources available at runtime?

2008-12-03 Thread Nick Stolwijk
I know at least of one application, which uses jar files with some java and some class files. It is the Masters of Java software, which bundles each assignment as a jar. The java files are shown to the users (the clients) and committed and compiled at the server. Hth, Nick Stolwijk ~Java Develope