[jboss-cvs] JBossAS SVN: r90421 - in projects/spider/trunk: dependency-legacy/.settings and 5 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Jun 18 08:37:07 EDT 2009


Author: wolfc
Date: 2009-06-18 08:37:06 -0400 (Thu, 18 Jun 2009)
New Revision: 90421

Added:
   projects/spider/trunk/dependency-legacy/.classpath
   projects/spider/trunk/dependency-legacy/.project
   projects/spider/trunk/dependency-legacy/.settings/
   projects/spider/trunk/dependency-legacy/.settings/org.eclipse.jdt.core.prefs
   projects/spider/trunk/dependency-legacy/.settings/org.maven.ide.eclipse.prefs
   projects/spider/trunk/dependency-legacy/pom.xml
   projects/spider/trunk/dependency-legacy/src/main/java/org/jboss/deployment/dependency/EndpointMapAttachment.java
   projects/spider/trunk/security-legacy/.classpath
   projects/spider/trunk/security-legacy/.project
   projects/spider/trunk/security-legacy/.settings/
   projects/spider/trunk/security-legacy/.settings/org.eclipse.jdt.core.prefs
   projects/spider/trunk/security-legacy/.settings/org.maven.ide.eclipse.prefs
   projects/spider/trunk/security-legacy/pom.xml
   projects/spider/trunk/web-legacy/.classpath
   projects/spider/trunk/web-legacy/.project
   projects/spider/trunk/web-legacy/.settings/
   projects/spider/trunk/web-legacy/.settings/org.eclipse.jdt.core.prefs
   projects/spider/trunk/web-legacy/pom.xml
Log:
JBAS-7019: forked web-legacy, dependency-legacy and security-legacy. refactored some minor bits to make it compile (part 2)

Added: projects/spider/trunk/dependency-legacy/.classpath
===================================================================
--- projects/spider/trunk/dependency-legacy/.classpath	                        (rev 0)
+++ projects/spider/trunk/dependency-legacy/.classpath	2009-06-18 12:37:06 UTC (rev 90421)
@@ -0,0 +1,6 @@
+<classpath>
+  <classpathentry kind="src" path="src/main/java" including="**/*.java"/>
+  <classpathentry kind="output" path="eclipse-target/classes"/>
+  <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
+  <classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/>
+</classpath>
\ No newline at end of file

Added: projects/spider/trunk/dependency-legacy/.project
===================================================================
--- projects/spider/trunk/dependency-legacy/.project	                        (rev 0)
+++ projects/spider/trunk/dependency-legacy/.project	2009-06-18 12:37:06 UTC (rev 90421)
@@ -0,0 +1,17 @@
+<projectDescription>
+  <name>jboss-spider-dependency-legacy</name>
+  <comment>A fork of the legacy dependency deployment code in the AS server module.</comment>
+  <projects/>
+  <buildSpec>
+    <buildCommand>
+      <name>org.eclipse.jdt.core.javabuilder</name>
+    </buildCommand>
+    <buildCommand>
+      <name>org.maven.ide.eclipse.maven2Builder</name>
+    </buildCommand>
+  </buildSpec>
+  <natures>
+    <nature>org.eclipse.jdt.core.javanature</nature>
+    <nature>org.maven.ide.eclipse.maven2Nature</nature>
+  </natures>
+</projectDescription>
\ No newline at end of file

Added: projects/spider/trunk/dependency-legacy/.settings/org.eclipse.jdt.core.prefs
===================================================================
--- projects/spider/trunk/dependency-legacy/.settings/org.eclipse.jdt.core.prefs	                        (rev 0)
+++ projects/spider/trunk/dependency-legacy/.settings/org.eclipse.jdt.core.prefs	2009-06-18 12:37:06 UTC (rev 90421)
@@ -0,0 +1,5 @@
+#Thu Jun 18 12:15:32 CEST 2009
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
+eclipse.preferences.version=1
+org.eclipse.jdt.core.compiler.source=1.5
+org.eclipse.jdt.core.compiler.compliance=1.5

Added: projects/spider/trunk/dependency-legacy/.settings/org.maven.ide.eclipse.prefs
===================================================================
--- projects/spider/trunk/dependency-legacy/.settings/org.maven.ide.eclipse.prefs	                        (rev 0)
+++ projects/spider/trunk/dependency-legacy/.settings/org.maven.ide.eclipse.prefs	2009-06-18 12:37:06 UTC (rev 90421)
@@ -0,0 +1,8 @@
+#Thu Jun 18 13:02:24 CEST 2009
+activeProfiles=eclipse
+eclipse.preferences.version=1
+fullBuildGoals=process-test-resources
+includeModules=false
+resolveWorkspaceProjects=true
+resourceFilterGoals=process-resources resources\:testResources
+version=1

Added: projects/spider/trunk/dependency-legacy/pom.xml
===================================================================
--- projects/spider/trunk/dependency-legacy/pom.xml	                        (rev 0)
+++ projects/spider/trunk/dependency-legacy/pom.xml	2009-06-18 12:37:06 UTC (rev 90421)
@@ -0,0 +1,34 @@
+<!--
+  vi:ts=2:sw=2:expandtab
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+
+  <!-- Parent -->
+  <parent>
+    <groupId>org.jboss.spider</groupId>
+    <artifactId>jboss-spider</artifactId>
+    <version>0.1.0-SNAPSHOT</version>
+  </parent>
+
+  <modelVersion>4.0.0</modelVersion>
+
+  <!-- Artifact Configuration -->
+  <groupId>org.jboss.spider</groupId>
+  <artifactId>jboss-spider-dependency-legacy</artifactId>
+  <name>JBoss Spider Dependency Legacy</name>
+  <description>
+    A fork of the legacy dependency deployment code in the AS server module.
+  </description>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.jboss.metadata</groupId>
+      <artifactId>jboss-metadata</artifactId>
+    </dependency>
+
+    <dependency>
+      <groupId>org.jboss.microcontainer</groupId>
+      <artifactId>jboss-kernel</artifactId>
+    </dependency>
+  </dependencies>
+</project>

Added: projects/spider/trunk/dependency-legacy/src/main/java/org/jboss/deployment/dependency/EndpointMapAttachment.java
===================================================================
--- projects/spider/trunk/dependency-legacy/src/main/java/org/jboss/deployment/dependency/EndpointMapAttachment.java	                        (rev 0)
+++ projects/spider/trunk/dependency-legacy/src/main/java/org/jboss/deployment/dependency/EndpointMapAttachment.java	2009-06-18 12:37:06 UTC (rev 90421)
@@ -0,0 +1,38 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2009, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.deployment.dependency;
+
+/**
+ * Specify the name of the endpoint map attachment that can be found in a deployment unit.
+ * The endpoint map is a Map<String, ContainerDependencyMetaData> and is attached
+ * by the MappedReferenceMetaDataResolverDeployer.
+ * 
+ * @author <a href="mailto:cdewolf at redhat.com">Carlo de Wolf</a>
+ * @version $Revision: $
+ */
+public interface EndpointMapAttachment
+{
+   // Note: The name must match the one specified in MappedReferenceMetaDataResolverDeployer.ENDPOINT_MAP_KEY
+   // until it has been refactored to use this field.
+   /** Key for Map<String, ContainerDependencyMetaData> attachment */
+   static final String ENDPOINT_MAP_KEY = "MappedReferenceMetaDataResolverDeployer.endpointMap";
+}

Added: projects/spider/trunk/security-legacy/.classpath
===================================================================
--- projects/spider/trunk/security-legacy/.classpath	                        (rev 0)
+++ projects/spider/trunk/security-legacy/.classpath	2009-06-18 12:37:06 UTC (rev 90421)
@@ -0,0 +1,6 @@
+<classpath>
+  <classpathentry kind="src" path="src/main/java" including="**/*.java"/>
+  <classpathentry kind="output" path="eclipse-target/classes"/>
+  <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
+  <classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/>
+</classpath>
\ No newline at end of file

Added: projects/spider/trunk/security-legacy/.project
===================================================================
--- projects/spider/trunk/security-legacy/.project	                        (rev 0)
+++ projects/spider/trunk/security-legacy/.project	2009-06-18 12:37:06 UTC (rev 90421)
@@ -0,0 +1,17 @@
+<projectDescription>
+  <name>jboss-spider-security-legacy</name>
+  <comment>A fork of the legacy security deployment code in the AS server module.</comment>
+  <projects/>
+  <buildSpec>
+    <buildCommand>
+      <name>org.eclipse.jdt.core.javabuilder</name>
+    </buildCommand>
+    <buildCommand>
+      <name>org.maven.ide.eclipse.maven2Builder</name>
+    </buildCommand>
+  </buildSpec>
+  <natures>
+    <nature>org.eclipse.jdt.core.javanature</nature>
+    <nature>org.maven.ide.eclipse.maven2Nature</nature>
+  </natures>
+</projectDescription>
\ No newline at end of file

Added: projects/spider/trunk/security-legacy/.settings/org.eclipse.jdt.core.prefs
===================================================================
--- projects/spider/trunk/security-legacy/.settings/org.eclipse.jdt.core.prefs	                        (rev 0)
+++ projects/spider/trunk/security-legacy/.settings/org.eclipse.jdt.core.prefs	2009-06-18 12:37:06 UTC (rev 90421)
@@ -0,0 +1,5 @@
+#Thu Jun 18 12:15:35 CEST 2009
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
+eclipse.preferences.version=1
+org.eclipse.jdt.core.compiler.source=1.5
+org.eclipse.jdt.core.compiler.compliance=1.5

Added: projects/spider/trunk/security-legacy/.settings/org.maven.ide.eclipse.prefs
===================================================================
--- projects/spider/trunk/security-legacy/.settings/org.maven.ide.eclipse.prefs	                        (rev 0)
+++ projects/spider/trunk/security-legacy/.settings/org.maven.ide.eclipse.prefs	2009-06-18 12:37:06 UTC (rev 90421)
@@ -0,0 +1,8 @@
+#Thu Jun 18 13:02:38 CEST 2009
+activeProfiles=eclipse
+eclipse.preferences.version=1
+fullBuildGoals=process-test-resources
+includeModules=false
+resolveWorkspaceProjects=true
+resourceFilterGoals=process-resources resources\:testResources
+version=1

Added: projects/spider/trunk/security-legacy/pom.xml
===================================================================
--- projects/spider/trunk/security-legacy/pom.xml	                        (rev 0)
+++ projects/spider/trunk/security-legacy/pom.xml	2009-06-18 12:37:06 UTC (rev 90421)
@@ -0,0 +1,60 @@
+<!--
+  vi:ts=2:sw=2:expandtab
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+
+  <!-- Parent -->
+  <parent>
+    <groupId>org.jboss.spider</groupId>
+    <artifactId>jboss-spider</artifactId>
+    <version>0.1.0-SNAPSHOT</version>
+  </parent>
+
+  <modelVersion>4.0.0</modelVersion>
+
+  <!-- Artifact Configuration -->
+  <groupId>org.jboss.spider</groupId>
+  <artifactId>jboss-spider-security-legacy</artifactId>
+  <name>JBoss Spider Security Legacy</name>
+  <description>
+    A fork of the legacy security deployment code in the AS server module.
+  </description>
+
+  <dependencies>
+    <dependency>
+      <groupId>javax.security</groupId>
+      <artifactId>jacc</artifactId>
+    </dependency>
+
+    <dependency>
+      <groupId>jboss.web</groupId>
+      <artifactId>servlet-api</artifactId>
+    </dependency>
+
+    <dependency>
+      <groupId>org.jboss.deployers</groupId>
+      <artifactId>jboss-deployers-vfs-spi</artifactId>
+    </dependency>
+
+    <dependency>
+      <groupId>org.jboss.jbossas</groupId>
+      <artifactId>jboss-as-system-jmx</artifactId>
+    </dependency>
+
+    <dependency>
+      <groupId>org.jboss.metadata</groupId>
+      <artifactId>jboss-metadata</artifactId>
+    </dependency>
+
+    <dependency>
+      <groupId>org.jboss.security</groupId>
+      <artifactId>jboss-security-spi</artifactId>
+    </dependency>
+
+    <dependency>
+      <groupId>org.jboss.security</groupId>
+      <artifactId>jbosssx</artifactId>
+    </dependency>
+
+  </dependencies>
+</project>

Added: projects/spider/trunk/web-legacy/.classpath
===================================================================
--- projects/spider/trunk/web-legacy/.classpath	                        (rev 0)
+++ projects/spider/trunk/web-legacy/.classpath	2009-06-18 12:37:06 UTC (rev 90421)
@@ -0,0 +1,6 @@
+<classpath>
+  <classpathentry kind="src" path="src/main/java" including="**/*.java"/>
+  <classpathentry kind="output" path="eclipse-target/classes"/>
+  <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
+  <classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/>
+</classpath>
\ No newline at end of file

Added: projects/spider/trunk/web-legacy/.project
===================================================================
--- projects/spider/trunk/web-legacy/.project	                        (rev 0)
+++ projects/spider/trunk/web-legacy/.project	2009-06-18 12:37:06 UTC (rev 90421)
@@ -0,0 +1,17 @@
+<projectDescription>
+  <name>jboss-spider-web-legacy</name>
+  <comment>A fork of the legacy web code in the AS server module.</comment>
+  <projects/>
+  <buildSpec>
+    <buildCommand>
+      <name>org.eclipse.jdt.core.javabuilder</name>
+    </buildCommand>
+    <buildCommand>
+      <name>org.maven.ide.eclipse.maven2Builder</name>
+    </buildCommand>
+  </buildSpec>
+  <natures>
+    <nature>org.eclipse.jdt.core.javanature</nature>
+    <nature>org.maven.ide.eclipse.maven2Nature</nature>
+  </natures>
+</projectDescription>
\ No newline at end of file

Added: projects/spider/trunk/web-legacy/.settings/org.eclipse.jdt.core.prefs
===================================================================
--- projects/spider/trunk/web-legacy/.settings/org.eclipse.jdt.core.prefs	                        (rev 0)
+++ projects/spider/trunk/web-legacy/.settings/org.eclipse.jdt.core.prefs	2009-06-18 12:37:06 UTC (rev 90421)
@@ -0,0 +1,5 @@
+#Thu Jun 18 12:15:36 CEST 2009
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
+eclipse.preferences.version=1
+org.eclipse.jdt.core.compiler.source=1.5
+org.eclipse.jdt.core.compiler.compliance=1.5

Added: projects/spider/trunk/web-legacy/pom.xml
===================================================================
--- projects/spider/trunk/web-legacy/pom.xml	                        (rev 0)
+++ projects/spider/trunk/web-legacy/pom.xml	2009-06-18 12:37:06 UTC (rev 90421)
@@ -0,0 +1,99 @@
+<!--
+  vi:ts=2:sw=2:expandtab
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+
+  <!-- Parent -->
+  <parent>
+    <groupId>org.jboss.spider</groupId>
+    <artifactId>jboss-spider</artifactId>
+    <version>0.1.0-SNAPSHOT</version>
+  </parent>
+
+  <modelVersion>4.0.0</modelVersion>
+
+  <!-- Artifact Configuration -->
+  <groupId>org.jboss.spider</groupId>
+  <artifactId>jboss-spider-web-legacy</artifactId>
+  <name>JBoss Spider Web Legacy</name>
+  <description>
+    A fork of the legacy web code in the AS server module.
+  </description>
+
+  <properties>
+    <version.javax.faces>1.2_12</version.javax.faces>
+    <version.jboss.web>2.1.3.GA</version.jboss.web>
+    <version.org.jboss.deployers>2.0.7.GA</version.org.jboss.deployers>
+    <version.org.jboss.integration>5.1.0.SP1</version.org.jboss.integration>
+    <version.org.jboss.jbossas>6.0.0-SNAPSHOT</version.org.jboss.jbossas>
+  </properties>
+
+  <dependencies>
+    <!-- or org.jboss.javaee:jboss-jacc-api -->
+    <dependency>
+      <groupId>javax.security</groupId>
+      <artifactId>jacc</artifactId>
+      <version>1.0</version>
+    </dependency>
+
+    <!-- or java.security:jacc 
+    <dependency>
+      <groupId>org.jboss.javaee</groupId>
+      <artifactId>jboss-jacc-api</artifactId>
+    </dependency>
+    -->
+
+    <dependency>
+      <groupId>org.jboss.cl</groupId>
+      <artifactId>jboss-classloader</artifactId>
+      <version>2.0.3.GA</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.jboss.deployers</groupId>
+      <artifactId>jboss-deployers-vfs</artifactId>
+    </dependency>
+
+    <dependency>
+      <groupId>org.jboss.jbossas</groupId>
+      <artifactId>jboss-as-system-jmx</artifactId>
+    </dependency>
+
+    <!-- 
+      Something isn't declaring a dependency on jbossxb
+      java.lang.AssertionError: cannot find method org.jboss.xb.annotations.JBossXmlType.modelGroup()
+    -->
+    <dependency>
+      <groupId>org.jboss</groupId>
+      <artifactId>jbossxb</artifactId>
+    </dependency>
+
+    <!-- FIXME: should not be here -->
+    <dependency>
+      <groupId>org.jboss.jpa</groupId>
+      <artifactId>jboss-jpa-deployers</artifactId>
+    </dependency>
+
+    <dependency>
+      <groupId>org.jboss.metadata</groupId>
+      <artifactId>jboss-metadata</artifactId>
+    </dependency>
+
+    <dependency>
+      <groupId>org.jboss.naming</groupId>
+      <artifactId>jnp-client</artifactId>
+    </dependency>
+
+    <dependency>
+      <groupId>org.jboss.security</groupId>
+      <artifactId>jboss-security-spi</artifactId>
+    </dependency>
+
+    <dependency>
+      <groupId>org.jboss.spider</groupId>
+      <artifactId>jboss-spider-security-legacy</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+
+  </dependencies>
+</project>




More information about the jboss-cvs-commits mailing list