|
From: Adrian B. <ej...@us...> - 2004-03-14 18:46:57
|
User: ejort
Date: 04/03/14 10:37:59
Modified: . build.xml
Log:
Perform a login before accessing the secure jmx mbean
Revision Changes Path
1.349 +5 -1 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.348
retrieving revision 1.349
diff -u -r1.348 -r1.349
--- build.xml 14 Mar 2004 16:19:00 -0000 1.348
+++ build.xml 14 Mar 2004 18:37:59 -0000 1.349
@@ -15,7 +15,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.348 2004/03/14 16:19:00 ejort Exp $ -->
+<!-- $Id: build.xml,v 1.349 2004/03/14 18:37:59 ejort Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -5264,6 +5264,8 @@
<sysproperty key="jbosstest.deploy.dir" file="${build.lib}"/>
<sysproperty key="build.testlog" value="${build.testlog}"/>
<sysproperty key="log4j.configuration" value="file:${build.resources}/log4j.xml"/>
+ <sysproperty key="java.security.auth.login.config"
+ value="${build.resources}/security/auth.conf"/>
<classpath>
<pathelement location="${build.classes}"/>
@@ -6391,6 +6393,8 @@
<sysproperty key="jbosstest.threadcount" value="${jbosstest.threadcount}"/>
<sysproperty key="jbosstest.iterationcount" value="${jbosstest.iterationcount}"/>
<sysproperty key="jbosstest.beancount" value="${jbosstest.beancount}"/>
+ <sysproperty key="java.security.auth.login.config"
+ value="${build.resources}/security/auth.conf"/>
<classpath>
|