[jboss-cvs] JBossAS SVN: r65194 - in projects/javaee/trunk: jboss-ejb-api and 9 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Sep 6 15:59:24 EDT 2007


Author: scott.stark at jboss.org
Date: 2007-09-06 15:59:24 -0400 (Thu, 06 Sep 2007)
New Revision: 65194

Removed:
   projects/javaee/trunk/jboss-ejb-api/build.bat
   projects/javaee/trunk/jboss-ejb-api/build.sh
   projects/javaee/trunk/jboss-ejb-api/build.xml
   projects/javaee/trunk/jboss-ejb-api/component-info.xml
   projects/javaee/trunk/jboss-ejb-api/jbossbuild.xml
Modified:
   projects/javaee/trunk/build/pom.xml
   projects/javaee/trunk/jboss-ejb-api/pom.xml
   projects/javaee/trunk/jboss-jad-api/pom.xml
   projects/javaee/trunk/jboss-jaspi-api/pom.xml
   projects/javaee/trunk/jboss-jaxr-api/pom.xml
   projects/javaee/trunk/jboss-jaxs-api/pom.xml
   projects/javaee/trunk/jboss-jca-api/pom.xml
   projects/javaee/trunk/jboss-jms-api/pom.xml
   projects/javaee/trunk/jboss-persistence-api/pom.xml
   projects/javaee/trunk/jboss-servlet-api/pom.xml
   projects/javaee/trunk/jboss-transaction-api/pom.xml
Log:
Reset to snapshot version and fix the tagBase setting

Modified: projects/javaee/trunk/build/pom.xml
===================================================================
--- projects/javaee/trunk/build/pom.xml	2007-09-06 19:56:10 UTC (rev 65193)
+++ projects/javaee/trunk/build/pom.xml	2007-09-06 19:59:24 UTC (rev 65194)
@@ -16,7 +16,8 @@
   To add a module edit the modules section and add the module also to 
   assembly/bin.xml and assembly.sources.xml.
 -->
-<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">
+<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>
     <groupId>org.jboss</groupId>
     <artifactId>jboss-parent</artifactId>
@@ -25,7 +26,7 @@
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.jboss.javaee</groupId>
   <artifactId>jboss-javaee</artifactId>
-  <version>5.0.0.Beta3</version>
+  <version>5.0.0-SNAPSHOT</version>
   <packaging>pom</packaging>
   <name>JBoss JavaEE 5.0 Build</name>
   <url>http://www.jboss.com</url>
@@ -33,9 +34,9 @@
     The JBoss JavaEE API classes
   </description>
   <scm>
-    <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossas/javaee/tags/5.0.0.Beta3</connection>
-    <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossas/javaee/tags/5.0.0.Beta3</developerConnection>
-    <url>http://viewvc.jboss.org/cgi-bin/viewvc.cgi/jbossas/javaee/tags/5.0.0.Beta3</url>
+    <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossas/projects/javaee/trunk/</connection>
+    <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossas/projects/javaee/trunk/</developerConnection>
+    <url>http://viewvc.jboss.org/cgi-bin/viewvc.cgi/jbossas/projects/javaee/trunk/</url>
   </scm>
   <build>
     <sourceDirectory>src/main</sourceDirectory>
@@ -124,7 +125,7 @@
       <plugin>
         <artifactId>maven-release-plugin</artifactId>
         <configuration>
-           <tagBase>https://svn.jboss.org/repos/jbossas/javaee/tags</tagBase>
+           <tagBase>https://svn.jboss.org/repos/jbossas/projects/javaee/tags</tagBase>
         </configuration>
       </plugin>
     </plugins>

Deleted: projects/javaee/trunk/jboss-ejb-api/build.bat
===================================================================
--- projects/javaee/trunk/jboss-ejb-api/build.bat	2007-09-06 19:56:10 UTC (rev 65193)
+++ projects/javaee/trunk/jboss-ejb-api/build.bat	2007-09-06 19:59:24 UTC (rev 65194)
@@ -1,89 +0,0 @@
- at echo off
-REM  ======================================================================
-REM
-REM  This is the main entry point for the build system.
-REM
-REM  Users should be sure to execute this file rather than 'ant' to ensure
-REM  the correct version is being used with the correct configuration.
-REM
-REM  ======================================================================
-REM
-REM $Id$
-REM
-REM Authors:
-REM     Jason Dillon <jason at planet57.com>
-REM     Sacha Labourey <sacha.labourey at cogito-info.ch>
-REM
-
-REM ******************************************************
-REM Ignore the ANT_HOME variable: we want to use *our*
-REM ANT version and associated JARs.
-REM ******************************************************
-REM Ignore the users classpath, cause it might mess
-REM things up
-REM ******************************************************
-
-SETLOCAL
-
-set CLASSPATH=
-set ANT_HOME=
-set ANT_OPTS=-Djava.protocol.handler.pkgs=org.jboss.net.protocol -Dbuild.script=build.bat
-
-REM ******************************************************
-REM - "for" loops have been unrolled for compatibility
-REM   with some WIN32 systems.
-REM ******************************************************
-
-set NAMES=tools;tools\ant;tools\apache\ant
-set SUBFOLDERS=..;..\..;..\..\..;..\..\..\..
-
-REM ******************************************************
-REM ******************************************************
-
-SET EXECUTED=FALSE
-for %%i in (%NAMES%) do call :subLoop %%i %1 %2 %3 %4 %5 %6
-
-goto :EOF
-
-
-REM ******************************************************
-REM ********* Search for names in the subfolders *********
-REM ******************************************************
-
-:subLoop
-for %%j in (%SUBFOLDERS%) do call :testIfExists %%j\%1\bin\ant.bat %2 %3 %4 %5 %6 %7
-
-goto :EOF
-
-
-REM ******************************************************
-REM ************ Test if ANT Batch file exists ***********
-REM ******************************************************
-
-:testIfExists
-if exist %1 call :BatchFound %1 %2 %3 %4 %5 %6 %7 %8
-
-goto :EOF
-
-
-REM ******************************************************
-REM ************** Batch file has been found *************
-REM ******************************************************
-
-:BatchFound
-if (%EXECUTED%)==(FALSE) call :ExecuteBatch %1 %2 %3 %4 %5 %6 %7 %8
-set EXECUTED=TRUE
-
-goto :EOF
-
-REM ******************************************************
-REM ************* Execute Batch file only once ***********
-REM ******************************************************
-
-:ExecuteBatch
-echo Calling %1 %2 %3 %4 %5 %6 %7 %8
-call %1 %2 %3 %4 %5 %6 %7 %8
-
-:end
-
-if "%NOPAUSE%" == "" pause

Deleted: projects/javaee/trunk/jboss-ejb-api/build.sh
===================================================================
--- projects/javaee/trunk/jboss-ejb-api/build.sh	2007-09-06 19:56:10 UTC (rev 65193)
+++ projects/javaee/trunk/jboss-ejb-api/build.sh	2007-09-06 19:59:24 UTC (rev 65194)
@@ -1,172 +0,0 @@
-#!/bin/sh
-### ====================================================================== ###
-##                                                                          ##
-##  This is the main entry point for the build system.                      ##
-##                                                                          ##
-##  Users should be sure to execute this file rather than 'ant' to ensure   ##
-##  the correct version is being used with the correct configuration.       ##
-##                                                                          ##
-### ====================================================================== ###
-
-# $Id$
-
-PROGNAME=`basename $0`
-DIRNAME=`dirname $0`
-GREP="grep"
-ROOT="/"
-
-# Ignore user's ANT_HOME if it is set
-ANT_HOME=""
-
-# the default search path for ant
-ANT_SEARCH_PATH="\
-    tools
-    tools/ant \
-    tools/apache/ant \
-    ant"
-
-# the default build file name
-ANT_BUILD_FILE="build.xml"
-
-# the default arguments
-ANT_OPTIONS="-find $ANT_BUILD_FILE"
-
-# Use the maximum available, or set MAX_FD != -1 to use that
-MAX_FD="maximum"
-
-# OS specific support (must be 'true' or 'false').
-cygwin=false;
-darwin=false;
-case "`uname`" in
-    CYGWIN*)
-        cygwin=true
-        ;;
-
-    Darwin*)
-        darwin=true
-        ;;
-esac
-
-#
-# Helper to complain.
-#
-die() {
-    echo "${PROGNAME}: $*"
-    exit 1
-}
-
-#
-# Helper to complain.
-#
-warn() {
-    echo "${PROGNAME}: $*"
-}
-
-#
-# Helper to source a file if it exists.
-#
-maybe_source() {
-    for file in $*; do
-	if [ -f "$file" ]; then
-	    . $file
-	fi
-    done
-}
-
-search() {
-    search="$*"
-    for d in $search; do
-	ANT_HOME="`pwd`/$d"
-	ANT="$ANT_HOME/bin/ant"
-	if [ -x "$ANT" ]; then
-	    # found one
-	    echo $ANT_HOME
-	    break
-	fi
-    done
-}
-
-#
-# Main function.
-#
-main() {
-    # if there is a build config file. then source it
-    maybe_source "$DIRNAME/build.conf" "$HOME/.build.conf"
-
-    # Increase the maximum file descriptors if we can
-    if [ $cygwin = "false" ]; then
-	MAX_FD_LIMIT=`ulimit -H -n`
-	if [ $? -eq 0 ]; then
-	    if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ]; then
-		# use the system max
-		MAX_FD="$MAX_FD_LIMIT"
-	    fi
-
-	    ulimit -n $MAX_FD
-	    if [ $? -ne 0 ]; then
-		warn "Could not set maximum file descriptor limit: $MAX_FD"
-	    fi
-	else
-	    warn "Could not query system maximum file descriptor limit: $MAX_FD_LIMIT"
-	fi
-    fi
-
-    # try the search path
-    ANT_HOME=`search $ANT_SEARCH_PATH`
-
-    # try looking up to root
-    if [ "x$ANT_HOME" = "x" ]; then
-	target="build"
-	_cwd=`pwd`
-
-	while [ "x$ANT_HOME" = "x" ] && [ "$cwd" != "$ROOT" ]; do
-	    cd ..
-	    cwd=`pwd`
-	    ANT_HOME=`search $ANT_SEARCH_PATH`
-	done
-
-	# make sure we get back
-	cd $_cwd
-
-	if [ "$cwd" != "$ROOT" ]; then
-	    found="true"
-	fi
-
-	# complain if we did not find anything
-	if [ "$found" != "true" ]; then
-	    die "Could not locate Ant; check \$ANT or \$ANT_HOME."
-	fi
-    fi
-
-    # make sure we have one
-    ANT=$ANT_HOME/bin/ant
-    if [ ! -x "$ANT" ]; then
-	die "Ant file is not executable: $ANT"
-    fi
-
-    # need to specify planet57/buildmagic protocol handler package
-    ANT_OPTS="-Djava.protocol.handler.pkgs=org.jboss.net.protocol"
-
-    # setup some build properties
-    ANT_OPTS="$ANT_OPTS -Dbuild.script=$0"
-
-    # change to the directory where the script lives so users are not forced
-    # to be in the same directory as build.xml
-    cd $DIRNAME
-
-    # export some stuff for ant
-    export ANT ANT_HOME ANT_OPTS
-
-    # execute in debug mode, or simply execute
-    if [ "x$ANT_DEBUG" != "x" ]; then
-	/bin/sh -x $ANT $ANT_OPTIONS "$@"
-    else
-	exec $ANT $ANT_OPTIONS "$@"
-    fi
-}
-
-##
-## Bootstrap
-##
-
-main "$@"

Deleted: projects/javaee/trunk/jboss-ejb-api/build.xml
===================================================================
--- projects/javaee/trunk/jboss-ejb-api/build.xml	2007-09-06 19:56:10 UTC (rev 65193)
+++ projects/javaee/trunk/jboss-ejb-api/build.xml	2007-09-06 19:59:24 UTC (rev 65194)
@@ -1,290 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE project [
-   <!ENTITY buildmagic SYSTEM "../tools/etc/buildmagic/buildmagic.ent">
-   <!ENTITY libraries SYSTEM "../thirdparty/libraries.ent">
-   <!ENTITY modules SYSTEM "../tools/etc/buildmagic/modules.ent">
-]>
-
-<!-- ====================================================================== -->
-<!--                                                                        -->
-<!--  JBoss, the OpenSource J2EE webOS                                      -->
-<!--                                                                        -->
-<!--  Distributable under LGPL license.                                     -->
-<!--  See terms of license at http://www.gnu.org.                           -->
-<!--                                                                        -->
-<!-- ====================================================================== -->
-
-<!-- $Id$ -->
-
-<project default="main" name="JBoss/EJB3X">
-
-  <!-- ================================================================== -->
-  <!-- Setup                                                              -->
-  <!-- ================================================================== -->
-
-  <!--
-     | Include the common Buildmagic elements.
-     |
-     | This defines several different targets, properties and paths.
-     | It also sets up the basic extention tasks amoung other things.
-   -->
-
-  &buildmagic;
-
-
-  <!-- ================================================================== -->
-  <!-- Initialization                                                     -->
-  <!-- ================================================================== -->
-
-  <!--
-     | Initialize the build system.  Must depend on '_buildmagic:init'.  
-     | Other targets should depend on 'init' or things will mysteriously fail.
-   -->
-
-  <target name="init" unless="init.disable" depends="_buildmagic:init">
-  </target>
-
-
-  <!-- ================================================================== -->
-  <!-- Configuration                                                      -->
-  <!-- ================================================================== -->
-
-  <!--
-     | Configure the build system.  
-     |
-     | This target is invoked by the Buildmagic initialization logic and 
-     | should contain module specific configuration elements.
-   -->
-
-  <target name="configure" unless="configure.disable">
-
-    <!-- =================== -->
-    <!-- Basic Configuration -->
-    <!-- =================== -->
-
-    <!-- Module name(s) & version -->
-    <property name="module.name" value="ejb3x"/>
-    <property name="module.Name" value="JBoss EJB3X"/>
-    <property name="module.version" value="DEV"/>
-
-    <!-- ========= -->
-    <!-- Libraries -->
-    <!-- ========= -->
-    &libraries;
-    <!-- The combined library classpath -->
-    <path id="library.classpath">
-      <path refid="sun.jaf.classpath" />
-      <path refid="sun.servlet.classpath" />
-    </path>
-
-    <!-- ======= -->
-    <!-- Modules -->
-    <!-- ======= -->
-
-    &modules;
-
-    <!-- The combined dependent module classpath -->
-    <path id="dependentmodule.classpath">
-      <path refid="jboss.common.core.classpath"/>
-      <path refid="jboss.common.logging.spi.classpath"/>
-      <!-- this is for org.jboss.lang.Enum -->
-       <path refid="jboss.aop.classpath"/>
-       <path refid="jboss.j2ee.classpath"/>
-    </path>
-
-    <!-- ===== -->
-    <!-- Tasks -->
-    <!-- ===== -->
-
-    <!-- Where source files live -->
-    <property name="source.java" value="${module.source}/main"/>
-    <property name="source.etc" value="${module.source}/etc"/>
-
-    <!-- Where build generated files will go -->
-    <property name="build.reports" value="${module.output}/reports"/>
-    <property name="build.classes" value="${module.output}/classes"/>
-    <property name="build.lib" value="${module.output}/lib"/>
-    <property name="build.api" value="${module.output}/api"/>
-    <property name="build.etc" value="${module.output}/etc"/>
-
-    <!-- Install/Release structure -->
-    <property name="install.id" value="${module.name}-${module.version}"/>
-    <property name="release.id" value="${install.id}"/>
-    <property name="install.root" value="${module.output}/${install.id}"/>
-
-    <!-- The combined thirdparty classpath -->
-    <path id="thirdparty.classpath">
-      <path refid="library.classpath"/>
-      <path refid="dependentmodule.classpath"/>
-    </path>
-
-    <!-- classpath and local.classpath must have a value using with a path -->
-    <property name="classpath" value=""/>
-    <property name="local.classpath" value=""/>
-
-    <!-- The classpath required to build classes. -->
-    <path id="javac.classpath">
-      <pathelement path="${classpath}"/>
-      <pathelement path="${local.classpath}"/>
-      <path refid="thirdparty.classpath"/>
-    </path>
-
-    <!-- The classpath required to build javadocs. -->
-    <path id="javadoc.classpath">
-      <path refid="javac.classpath"/>
-    </path>
-
-    <!-- Packages to include when generating api documentation -->
-    <property name="javadoc.packages" value="javax.*"/>
-
-    <!-- Override JUnit defaults -->
-    <property name="junit.timeout" value="240000"/> <!-- 4 minutes -->
-    <property name="junit.batchtest.todir" value="${build.reports}"/>
-    <property name="junit.jvm.options" value="-Ddummy"/>
-  </target>
-
-
-  <!-- ================================================================== -->
-  <!-- Compile                                                            -->
-  <!-- ================================================================== -->
-
-  <!-- 
-     | Compile everything.
-     |
-     | This target should depend on other compile-* targets for each 
-     | different type of compile that needs to be performed, short of
-     | documentation compiles.
-   -->
-
-  <target name="compile" 
-	  description="Compile all source files."
-	  depends="compile-etc, compile-classes"/>
-
-  <!-- Compile all class files -->
-  <target name="compile-classes" depends="init">
-    <mkdir dir="${build.classes}"/>
-    <javac destdir="${build.classes}"
-           optimize="${javac.optimize}"
-           source="1.5"
-           debug="${javac.debug}"
-	   depend="${javac.depend}"
-	   verbose="${javac.verbose}"
-	   deprecation="${javac.deprecation}"
-	   includeAntRuntime="${javac.include.ant.runtime}"
-	   includeJavaRuntime="${javac.include.java.runtime}"
-	   failonerror="${javac.fail.onerror}">
-       <src path="${source.java}"/>
-       <classpath refid="javac.classpath"/>
-       <include name="${javac.includes}"/>
-       <exclude name="${javac.excludes}"/>
-    </javac>
-  </target>
-
-  <!-- Compile manifests -->
-  <target name="compile-etc" depends="init">
-    <mkdir dir="${build.etc}"/>
-    <copy todir="${build.etc}" filtering="yes">
-      <fileset dir="${source.etc}">
-         <include name="**"/>
-      </fileset>
-    </copy>
-  </target>
-
-
-  <!-- ================================================================== -->
-  <!-- Archives                                                           -->
-  <!-- ================================================================== -->
-
-  <!-- 
-     | Build all jar files.
-   -->
-  <target name="internal-jars" 
-     depends="_buildmagic:build-bypass-check"
-	  unless="build-bypass.on">
-
-    <call target="compile"/>
-
-    <!-- Update the build marker to allow bypassing -->
-    <touch file="${build-bypass.marker}"/>
-
-  </target>
-
-  <target name="jars" 
-	  description="Builds all jar files."
-     depends="internal-jars">
-
-    <mkdir dir="${build.lib}"/>
-    
-    <jar jarfile="${build.lib}/jboss-ejb3x.jar">
-      <fileset dir="${build.classes}">
-        <include name="javax/**"/>
-      </fileset>
-    </jar>
-
-  </target>
-
-  <!-- ================================================================== -->
-  <!-- Install & Release                                                  -->
-  <!-- ================================================================== -->
-
-  <target name="install" 
-	  description="Install the structure for a release."
-	  depends="all, _buildmagic:install:default"/>
-
-  <target name="release" depends="install"/>
-
-  <target name="release-zip" 
-	  description="Builds a ZIP distribution."
-	  depends="release, _buildmagic:release:zip"/>
-
-  <target name="release-tar" 
-	  description="Builds a TAR distribution."
-	  depends="release, _buildmagic:release:tar"/>
-
-  <target name="release-tgz" 
-	  description="Builds a TAR-GZ distribution."
-	  depends="release, _buildmagic:release:tgz"/>
-
-  <target name="release-all"
-	  description="Builds a distribution for each archive type."
-	  depends="release-zip, release-tgz"/>
-
-
-  <!-- ================================================================== -->
-  <!-- Cleaning                                                           -->
-  <!-- ================================================================== -->
-
-  <!-- Clean up all build output -->
-  <target name="clean" 
-	  description="Cleans up most generated files."
-	  depends="_buildmagic:clean">
-  </target>
-
-  <!-- Clean up all generated files -->
-  <target name="clobber" 
-	  description="Cleans up all generated files."
-	  depends="_buildmagic:clobber, clean">
-  </target>
-
-
-  <!-- ================================================================== -->
-  <!-- Misc.                                                              -->
-  <!-- ================================================================== -->
-
-  <target name="main"
-	  description="Executes the default target (most)."
-	  depends="most"/>
-    
-  <target name="all"
-	  description="Builds everything."
-	  depends="jars, docs"/>
-
-  <target name="most" 
-	  description="Builds almost everything."
-	  depends="jars"/>
-
-  <target name="help" 
-          description="Show this help message."
-	  depends="_buildmagic:help:standard"/>
-
-</project>

Deleted: projects/javaee/trunk/jboss-ejb-api/component-info.xml
===================================================================
--- projects/javaee/trunk/jboss-ejb-api/component-info.xml	2007-09-06 19:56:10 UTC (rev 65193)
+++ projects/javaee/trunk/jboss-ejb-api/component-info.xml	2007-09-06 19:59:24 UTC (rev 65194)
@@ -1,16 +0,0 @@
-<project name="ejb3x-component-info">
-   <!-- ============================================================ -->
-   <!-- ejb3x                                                        -->
-   <!-- ============================================================ -->
-
-   <component id="ejb3x"
-              module="jboss-ejb3x"
-              version="5.0-SNAPSHOT"
-   >
-      <artifact id="jboss-ejb3x.jar"/>   
-      
-      <export>
-         <include input="jboss-ejb3x.jar"/>      
-      </export>
-   </component>
-</project>

Deleted: projects/javaee/trunk/jboss-ejb-api/jbossbuild.xml
===================================================================
--- projects/javaee/trunk/jboss-ejb-api/jbossbuild.xml	2007-09-06 19:56:10 UTC (rev 65193)
+++ projects/javaee/trunk/jboss-ejb-api/jbossbuild.xml	2007-09-06 19:59:24 UTC (rev 65194)
@@ -1,57 +0,0 @@
-<?xml version="1.0"?>
-
-<!--
- JBoss, the OpenSource J2EE webOS
- 
- Distributable under LGPL license.
- See terms of license at gnu.org.
--->
-
-<!-- ================================================================== -->
-<!-- ejb3x  component definition                                        -->
-<!-- ================================================================== -->
-
-<project name="project" 
-         default="build" 
-         basedir="."
->
-   <!-- The main build -->
-   <import file="../tools/etc/jbossbuild/tasks.xml"/>
-   <import file="component-info.xml"/>
-
-   <!-- =============================================================== -->
-   <!-- The component definition                                        -->
-   <!-- =============================================================== -->
-
-   <componentdef component="ejb3x" 
-                 description="ejb3x Integration Module">
-
-      <!-- ============================================================ -->
-      <!-- The main source                                              -->
-      <!-- ============================================================ -->
-
-      <source id="main" requiredJDK="1.5" jvmSource="1.5" jvmTarget="1.5">
-         <include component="sun-jaf"/>
-         <include component="sun-servlet"/>
-         <include component="common"/>
-         <include component="aop"/>
-         <include component="j2ee"/>
-      </source>
-
-      <!-- ============================================================ -->
-      <!-- jboss-ejb3x.jar                                                -->
-      <!-- ============================================================ -->
-
-      <artifactdef artifact="jboss-ejb3x.jar" requiredJDK="1.5">
-         <include input="main">
-            <include pattern="javax/**"/>
-         </include>
-      </artifactdef>
-
-
-   </componentdef>
-
-   <!-- Generate the targets -->   
-   <generate generate="ejb3x"/>
-
-</project>

Modified: projects/javaee/trunk/jboss-ejb-api/pom.xml
===================================================================
--- projects/javaee/trunk/jboss-ejb-api/pom.xml	2007-09-06 19:56:10 UTC (rev 65193)
+++ projects/javaee/trunk/jboss-ejb-api/pom.xml	2007-09-06 19:59:24 UTC (rev 65194)
@@ -2,13 +2,13 @@
   <parent>
     <groupId>org.jboss.javaee</groupId>
     <artifactId>jboss-javaee</artifactId>
-    <version>5.0.0.Beta3</version>
+    <version>5.0.0-SNAPSHOT</version>
     <relativePath>../build/pom.xml</relativePath>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.jboss.javaee</groupId>
   <artifactId>jboss-ejb-api</artifactId>
-  <version>3.0.0</version>
+  <version>3.0.0-SNAPSHOT</version>
   <packaging>jar</packaging>
   <name>JBoss EJB 3.0 API</name>
   <url>http://www.jboss.org</url>

Modified: projects/javaee/trunk/jboss-jad-api/pom.xml
===================================================================
--- projects/javaee/trunk/jboss-jad-api/pom.xml	2007-09-06 19:56:10 UTC (rev 65193)
+++ projects/javaee/trunk/jboss-jad-api/pom.xml	2007-09-06 19:59:24 UTC (rev 65194)
@@ -2,13 +2,13 @@
   <parent>
     <groupId>org.jboss.javaee</groupId>
     <artifactId>jboss-javaee</artifactId>
-    <version>5.0.0.Beta3</version>
+    <version>5.0.0-SNAPSHOT</version>
     <relativePath>../build/pom.xml</relativePath>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.jboss.javaee</groupId>
   <artifactId>jboss-jad-api</artifactId>
-  <version>1.2</version>
+  <version>1.2-SNAPSHOT</version>
   <packaging>jar</packaging>
   <name>JBoss JavaEE Application Deployment 1.2 API</name>
   <url>http://www.jboss.org</url>

Modified: projects/javaee/trunk/jboss-jaspi-api/pom.xml
===================================================================
--- projects/javaee/trunk/jboss-jaspi-api/pom.xml	2007-09-06 19:56:10 UTC (rev 65193)
+++ projects/javaee/trunk/jboss-jaspi-api/pom.xml	2007-09-06 19:59:24 UTC (rev 65194)
@@ -2,13 +2,13 @@
   <parent>
     <groupId>org.jboss.javaee</groupId>
     <artifactId>jboss-javaee</artifactId>
-    <version>5.0.0.Beta3</version>
+    <version>5.0.0-SNAPSHOT</version>
     <relativePath>../build/pom.xml</relativePath>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.jboss.javaee</groupId>
   <artifactId>jboss-jaspi-api</artifactId>
-  <version>1.0</version>
+  <version>1.0-SNAPSHOT</version>
   <packaging>jar</packaging>
   <name>JBoss Java Authentication SPI for Containers 1.0-PR API</name>
   <url>http://www.jboss.org</url>

Modified: projects/javaee/trunk/jboss-jaxr-api/pom.xml
===================================================================
--- projects/javaee/trunk/jboss-jaxr-api/pom.xml	2007-09-06 19:56:10 UTC (rev 65193)
+++ projects/javaee/trunk/jboss-jaxr-api/pom.xml	2007-09-06 19:59:24 UTC (rev 65194)
@@ -2,13 +2,13 @@
   <parent>
     <groupId>org.jboss.javaee</groupId>
     <artifactId>jboss-javaee</artifactId>
-    <version>5.0.0.Beta3</version>
+    <version>5.0.0-SNAPSHOT</version>
     <relativePath>../build/pom.xml</relativePath>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.jboss.javaee</groupId>
   <artifactId>jboss-jaxr-api</artifactId>
-  <version>1.0</version>
+  <version>1.0-SNAPSHOT</version>
   <packaging>jar</packaging>
   <name>JBoss Java API for XML Registries 1.0</name>
   <url>http://www.jboss.org</url>

Modified: projects/javaee/trunk/jboss-jaxs-api/pom.xml
===================================================================
--- projects/javaee/trunk/jboss-jaxs-api/pom.xml	2007-09-06 19:56:10 UTC (rev 65193)
+++ projects/javaee/trunk/jboss-jaxs-api/pom.xml	2007-09-06 19:59:24 UTC (rev 65194)
@@ -2,13 +2,13 @@
   <parent>
     <groupId>org.jboss.javaee</groupId>
     <artifactId>jboss-javaee</artifactId>
-    <version>5.0.0.Beta3</version>
+    <version>5.0.0-SNAPSHOT</version>
     <relativePath>../build/pom.xml</relativePath>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.jboss.javaee</groupId>
   <artifactId>jboss-jaxs-api</artifactId>
-  <version>1.2</version>
+  <version>1.2-SNAPSHOT</version>
   <packaging>jar</packaging>
   <name>JBoss Streaming API for XML 1.0</name>
   <url>http://www.jboss.org</url>

Modified: projects/javaee/trunk/jboss-jca-api/pom.xml
===================================================================
--- projects/javaee/trunk/jboss-jca-api/pom.xml	2007-09-06 19:56:10 UTC (rev 65193)
+++ projects/javaee/trunk/jboss-jca-api/pom.xml	2007-09-06 19:59:24 UTC (rev 65194)
@@ -2,13 +2,13 @@
   <parent>
     <groupId>org.jboss.javaee</groupId>
     <artifactId>jboss-javaee</artifactId>
-    <version>5.0.0.Beta3</version>
+    <version>5.0.0-SNAPSHOT</version>
     <relativePath>../build/pom.xml</relativePath>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.jboss.javaee</groupId>
   <artifactId>jboss-jca-api</artifactId>
-  <version>1.5</version>
+  <version>1.5-SNAPSHOT</version>
   <packaging>jar</packaging>
   <name>JBoss J2EE Connector Architecture 1.5 API</name>
   <url>http://www.jboss.org</url>

Modified: projects/javaee/trunk/jboss-jms-api/pom.xml
===================================================================
--- projects/javaee/trunk/jboss-jms-api/pom.xml	2007-09-06 19:56:10 UTC (rev 65193)
+++ projects/javaee/trunk/jboss-jms-api/pom.xml	2007-09-06 19:59:24 UTC (rev 65194)
@@ -2,13 +2,13 @@
   <parent>
     <groupId>org.jboss.javaee</groupId>
     <artifactId>jboss-javaee</artifactId>
-    <version>5.0.0.Beta3</version>
+    <version>5.0.0-SNAPSHOT</version>
     <relativePath>../build/pom.xml</relativePath>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.jboss.javaee</groupId>
   <artifactId>jboss-jms-api</artifactId>
-  <version>1.1</version>
+  <version>1.1-SNAPSHOT</version>
   <packaging>jar</packaging>
   <name>JBoss JMS 1.1 API</name>
   <url>http://www.jboss.org</url>

Modified: projects/javaee/trunk/jboss-persistence-api/pom.xml
===================================================================
--- projects/javaee/trunk/jboss-persistence-api/pom.xml	2007-09-06 19:56:10 UTC (rev 65193)
+++ projects/javaee/trunk/jboss-persistence-api/pom.xml	2007-09-06 19:59:24 UTC (rev 65194)
@@ -2,13 +2,13 @@
   <parent>
     <groupId>org.jboss.javaee</groupId>
     <artifactId>jboss-javaee</artifactId>
-    <version>5.0.0.Beta3</version>
+    <version>5.0.0-SNAPSHOT</version>
     <relativePath>../build/pom.xml</relativePath>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.jboss.javaee</groupId>
   <artifactId>jboss-persistence-api</artifactId>
-  <version>3.0.0</version>
+  <version>3.0.0-SNAPSHOT</version>
   <packaging>jar</packaging>
   <name>JBoss Persistence 3.0 API</name>
   <url>http://www.jboss.org</url>

Modified: projects/javaee/trunk/jboss-servlet-api/pom.xml
===================================================================
--- projects/javaee/trunk/jboss-servlet-api/pom.xml	2007-09-06 19:56:10 UTC (rev 65193)
+++ projects/javaee/trunk/jboss-servlet-api/pom.xml	2007-09-06 19:59:24 UTC (rev 65194)
@@ -2,13 +2,13 @@
   <parent>
     <groupId>org.jboss.javaee</groupId>
     <artifactId>jboss-javaee</artifactId>
-    <version>5.0.0.Beta3</version>
+    <version>5.0.0-SNAPSHOT</version>
     <relativePath>../build/pom.xml</relativePath>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.jboss.javaee</groupId>
   <artifactId>jboss-servlet-api</artifactId>
-  <version>2.5</version>
+  <version>2.5-SNAPSHOT</version>
   <packaging>jar</packaging>
   <name>JBoss Java Servlet 2.5 API</name>
   <url>http://www.jboss.org</url>

Modified: projects/javaee/trunk/jboss-transaction-api/pom.xml
===================================================================
--- projects/javaee/trunk/jboss-transaction-api/pom.xml	2007-09-06 19:56:10 UTC (rev 65193)
+++ projects/javaee/trunk/jboss-transaction-api/pom.xml	2007-09-06 19:59:24 UTC (rev 65194)
@@ -2,13 +2,13 @@
   <parent>
     <groupId>org.jboss.javaee</groupId>
     <artifactId>jboss-javaee</artifactId>
-    <version>5.0.0.Beta3</version>
+    <version>5.0.0-SNAPSHOT</version>
     <relativePath>../build/pom.xml</relativePath>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.jboss.javaee</groupId>
   <artifactId>jboss-transaction-api</artifactId>
-  <version>1.0.1</version>
+  <version>1.0.1-SNAPSHOT</version>
   <packaging>jar</packaging>
   <name>JBoss Transaction 1.0.1 API</name>
   <url>http://www.jboss.org</url>




More information about the jboss-cvs-commits mailing list