Thanks Anita, sorry for not noticing that your first mail had the pom attached.
To me (and I'm no expert) it looks like we should be doing: (http://maven.apache.org/plugins/maven-surefire-plugin/howto.html) <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <systemProperties> <property> <name>java.security.auth.login.config</name> <value>src/test-data/data/login.config</value> </property> <property> <name>log4j.configuration</name> <value>file:log4j.properties</value> </property> </systemProperties> </configuration> </plugin> but that fails to work, I get NPEs at the sys-prop setting level. Asking the Maven guys if maybe it's changed or I'm just being an idiot. (http://www.rafb.net/paste/results/dPbO1l16.html) Hen On 3/3/06, anita kulshreshtha <[EMAIL PROTECTED]> wrote: > I am able to build successfully (all test pass) > using : > mvn -o > -Djava.security.auth.login.config=src/test-data/data/login.config > -Dlog4j.configuration=file:log4j.properties install > I need to set these properties. network.log defined > in log4j.properties is not being created. Need to > figure out why? > > Thanks > Anita > --- Henri Yandell <[EMAIL PROTECTED]> wrote: > > > *sigh* need sugar. > > > > 'mail me the pom file'. > > > > Hen > > > > On 3/3/06, Henri Yandell <[EMAIL PROTECTED]> wrote: > > > Could you the pom file you made so I can sit and > > stare at the errors too? :) > > > > > > Hen > > > > > > On 3/3/06, anita kulshreshtha > > <[EMAIL PROTECTED]> wrote: > > > > That did not help. I am loading all the > > properties > > > > defined in log4j.configuration via ant > > > > <property file="log4j.properties"/> > > > > Do I need to set the property > > log4j.configuration? > > > > to file:log4j.properties? Maven/ant does not > > like ":". > > > > > > > > Thanks > > > > Anita > > > > > > > > --- anita kulshreshtha <[EMAIL PROTECTED]> > > wrote: > > > > > > > > > Never mind... I just saw 2 delete dir lines! > > no > > > > > mkdir > > > > > :( > > > > > > > > > > Thanks > > > > > Anita > > > > > > > > > > --- anita kulshreshtha <[EMAIL PROTECTED]> > > wrote: > > > > > > > > > > > Hi, > > > > > > I am migrating security module to M2 (rev > > > > > > 382374). > > > > > > Some tests are failing. These tests pass > > with M1 > > > > > > build. > > > > > > > > > > > > > > > > > > :------------------------------------------------------------------------------- > > > > > > Battery: > > > > > > > > > > > > > org.apache.geronimo.security.jaas.LoginKerberosTest > > > > > > > > > > > > > > > > > > ------------------------------------------------------------------------------- > > > > > > Tests run: 1, Failures: 0, Errors: 1, Time > > > > > elapsed: > > > > > > 0.437 sec > > > > > > > > > > > > > > > > > > > > > > > > testLogin(org.apache.geronimo.security.jaas.LoginKerberosTest) > > > > > > Time elapsed: 0.406 sec <<< ERROR! > > > > > > > > > > > > [ stdout ] > > > > > > > > > > > > > > > > > > --------------------------------------------------------------- > > > > > > > > > > > > > > > > > > > > > > > > [ stderr ] > > > > > > > > > > > > > > > > > > --------------------------------------------------------------- > > > > > > > > > > > > > > > > > > > > > > > > [ stacktrace ] > > > > > > > > > > > > > > > > > > ----------------------------------------------------------- > > > > > > > > > > > > java.lang.SecurityException: Unable to > > locate a > > > > > > login > > > > > > configuration > > > > > > at > > > > > > > > > > > > > > > > > > com.sun.security.auth.login.ConfigFile.<init>(ConfigFile.java:97) > > > > > > at > > > > > > > > > > > > > > > > > > sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native > > > > > > Method) > > > > > > at ............................... > > > > > > The login.config in m1 build is > > defined by > > > > > > project.properties as : > > > > > > > > > > > > > > > > > > maven.junit.jvmargs=-Djava.security.auth.login.config=src/test-data/data/login.config > > > > > > I have set this property in pom.xml > > > > > (attached). > > > > > > What is missing here? > > > > > > > > > > > > Thanks > > > > > > Anita > > > > > > > > > > > > > > __________________________________________________ > > > > > > Do You Yahoo!? > > > > > > Tired of spam? Yahoo! Mail has the best > > spam > > > > > > protection around > > > > > > http://mail.yahoo.com > > > > > > > > > > > > > ------------------------------------------------------------------------------- > > > > > > Battery: > > > > > > > > > > > > > org.apache.geronimo.security.jaas.LoginKerberosTest > > > > > > > > > > > > > > > > > > ------------------------------------------------------------------------------- > > > > > > Tests run: 1, Failures: 0, Errors: 1, Time > > > > > elapsed: > > > > > > 0.437 sec > > > > > > > > > > > > > > > > > > > > > > > > testLogin(org.apache.geronimo.security.jaas.LoginKerberosTest) > > > > > > Time elapsed: 0.406 sec <<< ERROR! > > > > > > > > > > > > [ stdout ] > > > > > > > > > > > > > > > > > > --------------------------------------------------------------- > > > > > > > > > > > > > > > > > > > > > > > > [ stderr ] > > > > > > > > > > > > > > > > > > --------------------------------------------------------------- > > > > > > > > > > > > > > > > > > > > > > > > [ stacktrace ] > > > > > > > > > > > > > > > > > > ----------------------------------------------------------- > > > > > > > > > > > > java.lang.SecurityException: Unable to > > locate a > > > > > > login configuration > > > > > > at > > > > > > > > > > > > > > > > > > com.sun.security.auth.login.ConfigFile.<init>(ConfigFile.java:97) > > > > > > at > > > > > > > > > > > > > > > > > > sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native > > > > > > Method) > > > > > > at > > > > > > > > > > > > > > > > > > sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39) > > > > > > at > > > > > > > > > > > > > > > > > > sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27) > > > > > > at > > > > > > > > > > > > > > > > > > java.lang.reflect.Constructor.newInstance(Constructor.java:274) > > > > > > at > > java.lang.Class.newInstance0(Class.java:308) > > > === message truncated === > > __________________________________________________ > Do You Yahoo!? > Tired of spam? Yahoo! Mail has the best spam protection around > http://mail.yahoo.com > >
