[jboss-cvs] JBossAS SVN: r86065 - in projects/security/security-jboss-sx/trunk: jbosssx and 1 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Mar 18 15:24:13 EDT 2009


Author: anil.saldhana at jboss.com
Date: 2009-03-18 15:24:13 -0400 (Wed, 18 Mar 2009)
New Revision: 86065

Modified:
   projects/security/security-jboss-sx/trunk/.classpath
   projects/security/security-jboss-sx/trunk/jbosssx/pom.xml
   projects/security/security-jboss-sx/trunk/parent/pom.xml
Log:
jaxb/stax deps

Modified: projects/security/security-jboss-sx/trunk/.classpath
===================================================================
--- projects/security/security-jboss-sx/trunk/.classpath	2009-03-18 19:23:11 UTC (rev 86064)
+++ projects/security/security-jboss-sx/trunk/.classpath	2009-03-18 19:24:13 UTC (rev 86065)
@@ -26,8 +26,7 @@
 	<classpathentry kind="var" path="M2_REPO/javassist/javassist/3.4.GA/javassist-3.4.GA.jar"/>
 	<classpathentry kind="var" path="M2_REPO/org/jboss/javaee/jboss-javaee/5.0.1.GA/jboss-javaee-5.0.1.GA.jar"/>
 	<classpathentry kind="var" path="M2_REPO/jboss/jboss-jmx/4.2.1.GA/jboss-jmx-4.2.1.GA.jar"/>
-	<classpathentry kind="var" path="M2_REPO/org/jboss/security/jboss-sunxacml/2.0.2.GA/jboss-sunxacml-2.0.2.GA.jar"/>
-	<classpathentry kind="var" path="M2_REPO/org/jboss/security/jboss-xacml/2.0.2.GA/jboss-xacml-2.0.2.GA.jar"/>
+	<classpathentry kind="var" path="M2_REPO/org/jboss/security/jbossxacml/2.0.3.CR1-SNAPSHOT/jbossxacml-2.0.3.CR1-SNAPSHOT.jar"/>
 	<classpathentry kind="var" path="M2_REPO/apache-xerces/xercesImpl/2.9.1/xercesImpl-2.9.1.jar"/>
 	<classpathentry kind="var" path="M2_REPO/junit/junit/3.8.1/junit-3.8.1.jar"/>
 	<classpathentry kind="var" path="M2_REPO/org/jboss/jboss-test/1.0.4.GA/jboss-test-1.0.4.GA.jar"/>
@@ -45,5 +44,6 @@
 	<classpathentry kind="var" path="M2_REPO/org/jboss/security/jboss-security-spi/2.1.0-SNAPSHOT/jboss-security-spi-2.1.0-SNAPSHOT.jar"/>
 	<classpathentry kind="var" path="M2_REPO/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar"/>
 	<classpathentry kind="var" path="M2_REPO/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar"/>
+	<classpathentry kind="var" path="M2_REPO/stax/stax-api/1.0.1/stax-api-1.0.1.jar"/>
 	<classpathentry kind="output" path="target-eclipse/eclipse-classes"/>
 </classpath>

Modified: projects/security/security-jboss-sx/trunk/jbosssx/pom.xml
===================================================================
--- projects/security/security-jboss-sx/trunk/jbosssx/pom.xml	2009-03-18 19:23:11 UTC (rev 86064)
+++ projects/security/security-jboss-sx/trunk/jbosssx/pom.xml	2009-03-18 19:24:13 UTC (rev 86065)
@@ -46,7 +46,17 @@
          <surefire.jvm.args>-Djava.security.manager -Djava.security.policy=${policy.file} -Djava.security.debug=policy,failure,access ${test.env}</surefire.jvm.args>
       </properties>
     </profile>
+    <profile>
+      <id>one-test</id>
+      <activation>
+         <activeByDefault>false</activeByDefault>
+      </activation>
+      <properties>
+         <surefire.jvm.args>-Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8686</surefire.jvm.args>
+      </properties>
+    </profile>
    </profiles>
+
    <build>
       <finalName>${artifactId}</finalName>
       <resources>
@@ -118,8 +128,14 @@
       <dependency>
          <groupId>org.jboss.javaee</groupId>
          <artifactId>jboss-javaee</artifactId>
-         <version>5.0.0.Beta3</version>
+         <version>5.0.0.GA</version>
          <scope>compile</scope>
+         <exclusions>
+           <exclusion>
+             <groupId>sun-jaxb</groupId>
+             <artifactId>jaxb-api</artifactId>
+           </exclusion>
+         </exclusions>
       </dependency>
       <dependency>
          <groupId>jboss</groupId>
@@ -129,26 +145,25 @@
       </dependency>
       <dependency>
          <groupId>org.jboss.security</groupId>
-         <artifactId>jboss-xacml</artifactId>
-         <version>2.0.2.GA</version>
+         <artifactId>jbossxacml</artifactId>
+         <version>2.0.3.CR1-SNAPSHOT</version>
          <scope>compile</scope>
-         <exclusions>
-          <exclusion>
-           <groupId>org.jboss.security</groupId>
-           <artifactId>jboss-sunxacml</artifactId>
-          </exclusion>
-         </exclusions>
       </dependency>
       <dependency>
-         <groupId>org.jboss.security</groupId>
-         <artifactId>jboss-sunxacml</artifactId>
-         <version>2.0.2.GA</version>
+         <groupId>sun-jaxb</groupId>
+         <artifactId>jaxb-impl</artifactId>
+         <version>2.1.9</version>
          <scope>runtime</scope>
       </dependency>
       <dependency>
+         <groupId>stax</groupId>
+         <artifactId>stax-api</artifactId>
+         <version>1.0.1</version>
+      </dependency>
+      <dependency>
          <groupId>org.jboss</groupId>
          <artifactId>jnpserver</artifactId>
-         <version>5.0.0.Beta3</version>
+         <version>4.2.3.GA</version>
          <scope>test</scope>
       </dependency>    
       <dependency>

Modified: projects/security/security-jboss-sx/trunk/parent/pom.xml
===================================================================
--- projects/security/security-jboss-sx/trunk/parent/pom.xml	2009-03-18 19:23:11 UTC (rev 86064)
+++ projects/security/security-jboss-sx/trunk/parent/pom.xml	2009-03-18 19:24:13 UTC (rev 86065)
@@ -117,6 +117,24 @@
          <scope>compile</scope>
       </dependency>
       <dependency>
+         <groupId>stax</groupId>
+         <artifactId>stax-api</artifactId>
+         <version>1.0.1</version>
+         <scope>runtime</scope>
+      </dependency>
+      <dependency>
+         <groupId>sun-jaxb</groupId>
+         <artifactId>jaxb-api</artifactId>
+         <version>2.1.9</version>
+         <scope>compile</scope>
+      </dependency>
+      <dependency>
+         <groupId>sun-jaxb</groupId>
+         <artifactId>jaxb-impl</artifactId>
+         <version>2.1.9</version>
+         <scope>runtime</scope>
+      </dependency>
+      <dependency>
          <groupId>junit</groupId>
          <artifactId>junit</artifactId>
          <version>3.8.1</version>




More information about the jboss-cvs-commits mailing list