package javax.resource.spi.security does not exist

2009-01-10 Thread axiez
I am trying to compile PasswordLoginModule.java but getting compilation error that says package javax.resource.spi.security does not exist. -- View this message in context: http://www.nabble.com/package-javax.resource.spi.security-does-not-exist-tp21386911s134p21386911.html Sent from the Apache

Re: package javax.resource.spi.security does not exist

2009-01-10 Thread Forrest_Xia
How do you compile this file? use maven? or scratch from javac? or using some IDE? Suggest you setup classpath according to maven dependency configs. axiez wrote: I am trying to compile PasswordLoginModule.java but getting compilation error that says package javax.resource.spi.security

Re: How to create new server runtime in Eclipse with version 2.2-SNAPSHOT

2009-01-10 Thread bongosdude
Viola, Yes, I have confirmed last night that sample calculator and my project can be deployed to 2.1.3 but both failed to be deployed to 2.2-SNAPSHOT. I am trying to recompile from trunk again in the hope that some bugs are fixed to clear this hurdle. I will try to follow your recommended steps

Re: Maven build failed with missing WEB-INF/geronimo-web.xml

2009-01-10 Thread bongosdude
Hi, I found the an interesting thing about the problem that I reported in this post thread. Basically, I set up my project as maven and then convert the build EAR into eclipse projects so that I can debug my ejb and war app using GEP (please also see my other post from

Re: Maven build failed with missing WEB-INF/geronimo-web.xml

2009-01-10 Thread David Jencks
Hi bongosdude, It looks like the war plugin is not javaee-5 aware. Anything you put in the ear lib directory gets into the ear classloader which is a parent to the war classloader. Thus you don't need the war manifest classpath entries at all in an ee5 container such as geronimo. Your

Re: Maven build failed with missing WEB-INF/geronimo-web.xml

2009-01-10 Thread bongosdude
David, This is quite interesting point that you point it out. Do you know how I can make maven stop generating the MANIFEST.MF file? Thanks -B djencks wrote: Hi bongosdude, It looks like the war plugin is not javaee-5 aware. Anything you put in the ear lib directory gets into the ear

Re: Maven build failed with missing WEB-INF/geronimo-web.xml

2009-01-10 Thread David Jencks
On Jan 10, 2009, at 12:22 PM, bongosdude wrote: David, This is quite interesting point that you point it out. Do you know how I can make maven stop generating the MANIFEST.MF file? I think you want maven to generate the manifest.mf file but not include a CLASS-PATH entry. However, I