[jboss-cvs] JBossAS SVN: r106505 - in projects/jboss-jca/branches/performance: rars and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Jul 8 09:26:08 EDT 2010


Author: jesper.pedersen
Date: 2010-07-08 09:26:07 -0400 (Thu, 08 Jul 2010)
New Revision: 106505

Added:
   projects/jboss-jca/branches/performance/ivy.settings.xml
   projects/jboss-jca/branches/performance/ivy.xml
Removed:
   projects/jboss-jca/branches/performance/rars/ivy.settings.xml
   projects/jboss-jca/branches/performance/rars/ivy.xml
Modified:
   projects/jboss-jca/branches/performance/README.txt
   projects/jboss-jca/branches/performance/build.xml
   projects/jboss-jca/branches/performance/rars/build.xml
Log:
[JBJCA-372] Fix build environment

Modified: projects/jboss-jca/branches/performance/README.txt
===================================================================
--- projects/jboss-jca/branches/performance/README.txt	2010-07-08 12:58:07 UTC (rev 106504)
+++ projects/jboss-jca/branches/performance/README.txt	2010-07-08 13:26:07 UTC (rev 106505)
@@ -1,19 +1,10 @@
-The JBossJCA project
-====================
+JCA performance test suite
+==========================
 
-This is the home of the JBossJCA project which aims to implement the 
-following standards
+This project contains various resource adapters that can be
+used in a performance test suite.
 
- * Java Connector Architecture 1.5 (JSR-112)
- * Java Connector Architecture 1.6 (JSR-322)
-
-as well as additional resource adaptors needed by JBoss Application Server.
-
-The wiki for the project is located here:
-
- http://wiki.jboss.org/wiki/JBossJCA_POJO
-
 Please, visit our forums for questions or design discussions
 
-  User:      http://www.jboss.com/index.html?module=bb&op=viewforum&f=136
-  Developer: http://www.jboss.com/index.html?module=bb&op=viewforum&f=165
+  User:      http://community.jboss.org/en/jbossas/jca?view=all
+  Developer: http://community.jboss.org/en/jbossas/jca/dev?view=all

Modified: projects/jboss-jca/branches/performance/build.xml
===================================================================
--- projects/jboss-jca/branches/performance/build.xml	2010-07-08 12:58:07 UTC (rev 106504)
+++ projects/jboss-jca/branches/performance/build.xml	2010-07-08 13:26:07 UTC (rev 106505)
@@ -19,7 +19,7 @@
  * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
 -->
-<project name="jboss-jca" 
+<project name="jboss-jca-performance" 
          default="jars" 
          basedir="." 
          xmlns:ivy="antlib:org.apache.ivy.ant">
@@ -30,11 +30,11 @@
   <!-- ================================= 
        Project              
        ================================= -->
-  <property name="name" value="jboss-jca"/>
+  <property name="name" value="jboss-jca-performance"/>
   <property name="major" value="1"/>
   <property name="minor" value="0"/>
   <property name="patch" value="0"/>
-  <property name="type" value="Alpha14"/>
+  <property name="type" value="Alpha1"/>
 
   <!-- ================================= 
        Ivy              
@@ -49,14 +49,12 @@
   <property name="central.repo" value="http://repo1.maven.org/maven2"/>
   <property name="jboss.repo" value="http://repository.jboss.org/nexus/content/groups/public/"/>
   <property name="snapshots.repo" value="http://repository.jboss.org/nexus/content/repositories/snapshots/"/>
-  <property name="fungal.repo" value="http://jesperpedersen.github.com/fungal/maven2"/>
   
   <!-- ================================= 
        Properties              
        ================================= -->
   <property name="lib.dir" value="${basedir}/lib" />
   <property name="build.dir" value="${basedir}/build" />
-  <property name="api.dir" value="${basedir}/api" />
   <property name="doc.dir" value="${basedir}/doc" />
   <property name="target.dir" value="${basedir}/target" />
   <property name="tools.dir" value="${basedir}/tools" />
@@ -78,6 +76,15 @@
   <property name="junit.batchtest.haltonfailure" value="no" />
   <property name="junit.batchtest.fork" value="yes" />
 
+  <path id="lib.path.id">
+    <fileset dir="${lib.dir}/common">
+      <include name="**/*.jar"/>
+    </fileset>
+    <fileset dir="${target.dir}">
+      <include name="**/*.jar"/>
+    </fileset>
+  </path>
+
   <path id="findbugs.lib.path.id">
     <fileset dir="${tools.dir}/findbugs/lib"/>
   </path>
@@ -91,19 +98,49 @@
   </path>
 
   <!-- ================================= 
+       Versions              
+       ================================= -->
+  <property name="version.jboss.jca.api" value="1.5.0.GA"/>
+
+  <!-- ================================= 
+       Bootstrap Ivy
+       ================================= -->
+  <mkdir dir="${ivy.dir}"/>
+  <get usetimestamp="true" src="http://repo1.maven.org/maven2/org/apache/ivy/ivy/${ivy.version}/${ivy.jar.name}" 
+       skipexisting="true"
+       dest="${ivy.dir}/${ivy.jar.name}"/>
+  <taskdef resource="org/apache/ivy/ant/antlib.xml" uri="antlib:org.apache.ivy.ant" classpath="${ivy.dir}/${ivy.jar.name}"/>
+
+  <!-- ================================= 
        Target: init              
        ================================= -->
   <target name="init">
-    <fail message="JBoss JCA requires JDK6+" unless="HAVE_JDK_1.6"/>
+    <fail message="The performance test suite requires JDK5+" unless="HAVE_JDK_1.5"/>
 
+    <ivy:settings file="${basedir}/ivy.settings.xml"/>
+
     <mkdir dir="${build.dir}" />
     <mkdir dir="${target.dir}" />
   </target>
   
   <!-- ================================= 
+       Target: resolve              
+       ================================= -->
+  <target name="resolve" depends="init">
+    <ivy:retrieve pattern="${lib.dir}/[conf]/[artifact].[ext]" sync="true"/>
+  </target>
+  
+  <!-- ================================= 
+       Target: report              
+       ================================= -->
+  <target name="report" depends="resolve">
+    <ivy:report todir="${target.dir}"/>
+  </target>
+  
+  <!-- ================================= 
        Target: jars
        ================================= -->
-  <target name="jars" depends="init">
+  <target name="jars" depends="resolve">
     <ant dir="rars" inheritRefs="true" target="jars"/>
   </target>
   
@@ -148,7 +185,6 @@
     <ant dir="${module}" inheritRefs="true" target="test"/>
   </target>
 
-
   <!-- ================================= 
        Target: release
        ================================= -->
@@ -158,9 +194,7 @@
     <mkdir dir="${build.dir}" />
     <mkdir dir="${build.dir}/${name}-${major}.${minor}.${patch}.${type}" />
     <mkdir dir="${build.dir}/${name}-${major}.${minor}.${patch}.${type}/doc" />
-    <mkdir dir="${build.dir}/${name}-${major}.${minor}.${patch}.${type}/doc/spec" />
 
-
     <ant dir="doc/perfguide" target="pdf"/>
 
     <move flatten="true" todir="${build.dir}/${name}-${major}.${minor}.${patch}.${type}/doc">
@@ -170,13 +204,6 @@
     </move>
 
     <delete dir="${build.dir}/en"/>
-    
-    <ant dir="api" inheritRefs="true" target="docs"/>
-    <move todir="${build.dir}/${name}-${major}.${minor}.${patch}.${type}/doc/spec">
-      <fileset dir="${target.dir}/docs/spec">
-        <include name="**/*"/>
-      </fileset>
-    </move>
   </target>
 
   <!-- ================================= 

Copied: projects/jboss-jca/branches/performance/ivy.settings.xml (from rev 106502, projects/jboss-jca/branches/performance/rars/ivy.settings.xml)
===================================================================
--- projects/jboss-jca/branches/performance/ivy.settings.xml	                        (rev 0)
+++ projects/jboss-jca/branches/performance/ivy.settings.xml	2010-07-08 13:26:07 UTC (rev 106505)
@@ -0,0 +1,45 @@
+<!--
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2008, 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.
+-->
+<ivysettings>
+  <settings defaultResolver="default"/>
+  <caches defaultCacheDir="${user.home}/.ivy2/cache"
+          artifactPattern="[organisation]/[module]/[type]s/[artifact]-[revision](-[classifier]).[ext]" 
+          checkUpToDate="true"/>
+  <resolvers>
+    <filesystem name="local">
+      <ivy pattern="${ivy.cache.dir}/[module]/ivy-[revision].xml"/>
+      <artifact pattern="${ivy.cache.dir}/[module]/[artifact]-[revision](-[classifier]).[ext]"/>
+    </filesystem>
+    <ibiblio name="jboss" m2compatible="true" usepoms="false" root="${jboss.repo}"
+             pattern="[organisation]/[module]/[revision]/[artifact]-[revision](-[classifier]).[ext]"/>
+    <ibiblio name="snapshots" m2compatible="true" usepoms="false" root="${snapshots.repo}" useMavenMetadata="true"
+             pattern="[organisation]/[module]/[revision]/[artifact]-[revision](-[classifier]).[ext]"/>
+    <ibiblio name="central" m2compatible="true" usepoms="false" root="${central.repo}"
+             pattern="[organisation]/[module]/[revision]/[artifact]-[revision](-[classifier]).[ext]"/>
+    <chain name="default" returnFirst="true">
+      <resolver ref="local"/>
+      <resolver ref="jboss"/>
+      <resolver ref="snapshots"/>
+      <resolver ref="central"/>
+    </chain>
+  </resolvers>
+</ivysettings>

Copied: projects/jboss-jca/branches/performance/ivy.xml (from rev 106502, projects/jboss-jca/branches/performance/rars/ivy.xml)
===================================================================
--- projects/jboss-jca/branches/performance/ivy.xml	                        (rev 0)
+++ projects/jboss-jca/branches/performance/ivy.xml	2010-07-08 13:26:07 UTC (rev 106505)
@@ -0,0 +1,40 @@
+<!--
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2008, 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.
+-->
+<ivy-module version="2.0" 
+            xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+            xsi:noNamespaceSchemaLocation="http://ant.apache.org/ivy/schemas/ivy.xsd">
+
+  <info organisation="org.jboss" 
+        module="jboss-jca">
+    <license name="lgpl" url="http://repository.jboss.org/licenses/lgpl.txt"/>
+    <repository name="jboss" url="http://repository.jboss.org"/>
+  </info>
+
+  <configurations defaultconfmapping="common->default">
+    <conf name="common" transitive="false"/>
+  </configurations>
+
+  <dependencies>
+    <dependency org="org.jboss.javaee" name="jboss-jca-api" rev="${version.jboss.jca.api}" conf="common"/>
+  </dependencies>
+
+</ivy-module>

Modified: projects/jboss-jca/branches/performance/rars/build.xml
===================================================================
--- projects/jboss-jca/branches/performance/rars/build.xml	2010-07-08 12:58:07 UTC (rev 106504)
+++ projects/jboss-jca/branches/performance/rars/build.xml	2010-07-08 13:26:07 UTC (rev 106505)
@@ -19,113 +19,25 @@
  * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
 -->
-<project name="jboss-jca-performance" 
-         default="jars" 
-         basedir="." 
+<project name="jboss-jca-performance-rars" 
+         default="compile" 
          xmlns:ivy="antlib:org.apache.ivy.ant">
 
-  <available classname="java.lang.Enum" property="HAVE_JDK_1.5"/>
-  <available classname="java.lang.management.LockInfo" property="HAVE_JDK_1.6"/>
-
   <!-- ================================= 
-       Ivy              
-       ================================= -->
-  <property name="ivy.version" value="2.1.0"/>
-  <property name="ivy.dir" value="${user.home}/.ivy2/cache/org.apache.ivy/jars"/>
-  <property name="ivy.jar.name" value="ivy-${ivy.version}.jar"/>
-
-  <!-- ================================= 
-       Repositories              
-       ================================= -->
-  <property name="central.repo" value="http://repo1.maven.org/maven2"/>
-  <property name="jboss.repo" value="http://repository.jboss.org/nexus/content/groups/public/"/>
-  <property name="snapshots.repo" value="http://repository.jboss.org/nexus/content/repositories/snapshots/"/>
-  <property name="fungal.repo" value="http://jesperpedersen.github.com/fungal/maven2"/>
-  
-  <!-- ================================= 
        Properties              
        ================================= -->
-  <property name="lib.dir" value="${basedir}/lib" />
-  <property name="build.dir" value="${basedir}/build" />
-  <property name="api.dir" value="${basedir}/api" />
-  <property name="doc.dir" value="${basedir}/doc" />
-  <property name="target.dir" value="${basedir}/target" />
-  <property name="tools.dir" value="${basedir}/tools" />
-  <property name="reports.dir" value="${basedir}/reports" />
-  <property name="test.dir" value="${reports.dir}" />
+  <property name="build.rars.dir" value="${build.dir}/rars" />
 
-  <property name="javac.debug" value="on" />
-  <property name="javac.deprecation" value="on" />
-  <property name="javac.optimize" value="off" />
-
-
   <!-- ================================= 
-       Versions              
-       ================================= -->
-  <property name="version.jboss.jca.api" value="1.5.0.GA"/>
-
-  <!-- ================================= 
-       Paths              
-       ================================= -->
-  <path id="standalone.lib.path.id">
-    <fileset dir="${lib.dir}/standalone">
-      <include name="**/*.jar"/>
-    </fileset>
-    <fileset dir="${target.dir}">
-      <include name="**/*.jar"/>
-    </fileset>
-  </path>
-
-  <!-- ================================= 
-       Bootstrap Ivy
-       ================================= -->
-  <mkdir dir="${ivy.dir}"/>
-  <get usetimestamp="true" src="http://repo1.maven.org/maven2/org/apache/ivy/ivy/${ivy.version}/${ivy.jar.name}" 
-       skipexisting="true"
-       dest="${ivy.dir}/${ivy.jar.name}"/>
-  <taskdef resource="org/apache/ivy/ant/antlib.xml" uri="antlib:org.apache.ivy.ant" classpath="${ivy.dir}/${ivy.jar.name}"/>
-
-  <!-- ================================= 
-       Target: init              
-       ================================= -->
-  <target name="init">
-    <fail message="JBoss JCA requires JDK6+" unless="HAVE_JDK_1.6"/>
-  
-    <ivy:settings file="${basedir}/ivy.settings.xml"/>
-
-    <mkdir dir="${build.dir}" />
-    <mkdir dir="${target.dir}" />
-  </target>
-
-  <!-- ================================= 
-       Target: resolve              
-       ================================= -->
-  <target name="resolve" depends="init">
-    <ivy:retrieve pattern="${lib.dir}/[conf]/[artifact].[ext]" sync="true"/>
-  </target>
-  
-  <!-- ================================= 
-       Target: report              
-       ================================= -->
-  <target name="report" depends="resolve">
-    <ivy:report todir="${target.dir}"/>
-  </target>
-  
-  <!-- ================================= 
-       Properties              
-       ================================= -->
-  <property name="build.performance.dir" value="${build.dir}/performance" />
-
-  <!-- ================================= 
        Target: compile
        ================================= -->
-  <target name="compile" depends="resolve">
-    <mkdir dir="${build.performance.dir}" />
-    <mkdir dir="${build.performance.dir}/impl" />
+  <target name="compile">
+    <mkdir dir="${build.rars.dir}" />
+    <mkdir dir="${build.rars.dir}/impl" />
 
     <javac srcdir="src/main"
-           destdir="${build.performance.dir}/impl"
-           classpathref="standalone.lib.path.id"
+           destdir="${build.rars.dir}/impl"
+           classpathref="lib.path.id"
            debug="${javac.debug}"
            deprecation="${javac.deprecation}"
            optimize="${javac.optimize}">
@@ -137,54 +49,42 @@
        Target: jars 
        ================================= -->
   <target name="jars" depends="compile">
-    <mkdir dir="${build.performance.dir}/jars" />
+    <mkdir dir="${build.rars.dir}/jars" />
 
-    <!-- performance -->
-    <mkdir dir="${build.performance.dir}/jars/performance" />
+    <!-- rars -->
+    <mkdir dir="${build.rars.dir}/jars/rars" />
 
-    <copy todir="${build.performance.dir}/jars/performance">
-      <fileset dir="${build.performance.dir}/impl"
+    <copy todir="${build.rars.dir}/jars/rars">
+      <fileset dir="${build.rars.dir}/impl"
                includes="**"/>
     </copy>
 
-    <copy todir="${build.performance.dir}/jars/performance">
+    <copy todir="${build.rars.dir}/jars/rars">
       <fileset dir="src/main/resources/"
                includes="**/*"/>
     </copy>
 
     <jar destfile="${target.dir}/wmnotrans.rar"
          manifest="src/main/resources/rar-manifest.mf">
-       <fileset dir="${build.performance.dir}/jars/performance"
-    	    includes="org/jboss/jca/performance/rars/workmanager/*.class"/>
+       <fileset dir="${build.rars.dir}/jars/rars"
+    	    includes="org/jboss/jca/rars/rars/workmanager/*.class"/>
 
-       <fileset dir="${build.performance.dir}/jars/performance/workmanager/notrans"
+       <fileset dir="${build.rars.dir}/jars/rars/workmanager/notrans"
     	    includes="**/**"/>
 
     </jar>
 
     <jar destfile="${target.dir}/wmxatrans.rar"
          manifest="src/main/resources/rar-manifest.mf">
-       <fileset dir="${build.performance.dir}/jars/performance"
-    	    includes="org/jboss/jca/performance/rars/workmanager/*.class"/>
+       <fileset dir="${build.rars.dir}/jars/rars"
+    	    includes="org/jboss/jca/rars/rars/workmanager/*.class"/>
 
-       <fileset dir="${build.performance.dir}/jars/performance/workmanager/xatrans"
+       <fileset dir="${build.rars.dir}/jars/rars/workmanager/xatrans"
     	    includes="**/**"/>
 
     </jar>
-<!--
-    <jar destfile="${target.dir}/jboss-jca-performance-cli.jar"
-         manifest="src/main/resources/performance-cli-manifest.mf"
-         basedir="${build.performance.dir}/jars/performance"
-         includes="**/Main*.class"/>
-  	
-    <jar destfile="${target.dir}/jboss-jca-performance-ant.jar"
-         manifest="src/main/resources/performance-ant-manifest.mf"
-         basedir="${build.performance.dir}/jars/performance"
-   	     includes="**/ant/**"/>
--->
   </target>
 
-
   <!-- ================================= 
        Target: docs
        ================================= -->
@@ -211,31 +111,4 @@
     </copy>
   </target>
 
-
-  <!-- ================================= 
-       Target: clean              
-       ================================= -->
-  <target name="clean">
-    <delete>
-      <fileset dir="${basedir}" defaultexcludes="no">
-        <include name="**/*~"/>
-        <include name="**/*.bak"/>
-      </fileset>
-    </delete>
-    <delete>
-      <fileset dir="${lib.dir}" includes="**/*.jar"/>
-    </delete>
-    <delete dir="${build.dir}"/>
-    <delete dir="${target.dir}"/>
-    <delete dir="${reports.dir}"/>
-    <delete file="${name}-${major}.${minor}.${patch}.${type}.zip" />
-    <delete file="${name}-${major}.${minor}.${patch}.${type}.tar.gz" />
-  </target>
-  
-  <!-- ================================= 
-       Target: clean-cache              
-       ================================= -->
-  <target name="clean-cache">
-    <ivy:cleancache />
-  </target>
 </project>

Deleted: projects/jboss-jca/branches/performance/rars/ivy.settings.xml
===================================================================
--- projects/jboss-jca/branches/performance/rars/ivy.settings.xml	2010-07-08 12:58:07 UTC (rev 106504)
+++ projects/jboss-jca/branches/performance/rars/ivy.settings.xml	2010-07-08 13:26:07 UTC (rev 106505)
@@ -1,48 +0,0 @@
-<!--
- * JBoss, Home of Professional Open Source.
- * Copyright 2008, 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.
--->
-<ivysettings>
-  <settings defaultResolver="default"/>
-  <caches defaultCacheDir="${user.home}/.ivy2/cache"
-          artifactPattern="[organisation]/[module]/[type]s/[artifact]-[revision](-[classifier]).[ext]" 
-          checkUpToDate="true"/>
-  <resolvers>
-    <filesystem name="local">
-      <ivy pattern="${ivy.cache.dir}/[module]/ivy-[revision].xml"/>
-      <artifact pattern="${ivy.cache.dir}/[module]/[artifact]-[revision](-[classifier]).[ext]"/>
-    </filesystem>
-    <ibiblio name="jboss" m2compatible="true" usepoms="false" root="${jboss.repo}"
-             pattern="[organisation]/[module]/[revision]/[artifact]-[revision](-[classifier]).[ext]"/>
-    <ibiblio name="snapshots" m2compatible="true" usepoms="false" root="${snapshots.repo}" useMavenMetadata="true"
-             pattern="[organisation]/[module]/[revision]/[artifact]-[revision](-[classifier]).[ext]"/>
-    <ibiblio name="central" m2compatible="true" usepoms="false" root="${central.repo}"
-             pattern="[organisation]/[module]/[revision]/[artifact]-[revision](-[classifier]).[ext]"/>
-    <ibiblio name="fungal" m2compatible="true" usepoms="false" root="${fungal.repo}"
-             pattern="[organisation]/[module]/[revision]/[artifact]-[revision](-[classifier]).[ext]"/>
-    <chain name="default" returnFirst="true">
-      <resolver ref="local"/>
-      <resolver ref="jboss"/>
-      <resolver ref="snapshots"/>
-      <resolver ref="central"/>
-      <resolver ref="fungal"/>
-    </chain>
-  </resolvers>
-</ivysettings>

Deleted: projects/jboss-jca/branches/performance/rars/ivy.xml
===================================================================
--- projects/jboss-jca/branches/performance/rars/ivy.xml	2010-07-08 12:58:07 UTC (rev 106504)
+++ projects/jboss-jca/branches/performance/rars/ivy.xml	2010-07-08 13:26:07 UTC (rev 106505)
@@ -1,40 +0,0 @@
-<!--
- * JBoss, Home of Professional Open Source.
- * Copyright 2008, 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.
--->
-<ivy-module version="2.0" 
-            xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-            xsi:noNamespaceSchemaLocation="http://ant.apache.org/ivy/schemas/ivy.xsd">
-
-  <info organisation="org.jboss" 
-        module="jboss-jca">
-    <license name="lgpl" url="http://repository.jboss.org/licenses/lgpl.txt"/>
-    <repository name="jboss" url="http://repository.jboss.org"/>
-  </info>
-
-  <configurations>
-    <conf name="standalone" transitive="false"/>
-  </configurations>
-
-  <dependencies>
-    <dependency org="org.jboss.javaee" name="jboss-jca-api" rev="${version.jboss.jca.api}" conf="standalone->default"/>
-  </dependencies>
-
-</ivy-module>



More information about the jboss-cvs-commits mailing list