public
Description: JBossAS from jboss.org
Homepage:
Clone URL: git://github.com/bobmcwhirter/jbossas.git
remy.maucherat@jboss.com (author)
Sun Nov 08 09:34:07 -0800 2009
commit  67e2c10cdd4e182b2ad7f059dee38adf6ab77358
tree    cbf548fe88e0a4a56d92799f19a1ccceb6831d6e
parent  8d581c842c6e5b85e3b77e612d9482e6df90370c
name age message
file .gitignore Mon Mar 02 01:34:07 -0800 2009 more git (r84924) git-svn-id: http://anonsvn.... [wolfc]
file README.txt Thu Aug 06 13:33:43 -0700 2009 Add info about skipping the source jar generati... [pgier]
directory aspects/ Fri Sep 25 13:13:31 -0700 2009 [JBBUILD-541] Move assembly resources into asse... [pgier]
file build.bat Tue Mar 17 13:10:22 -0700 2009 Add the current directory to the search path. ... [pgier]
file build.sh Fri Mar 13 08:40:08 -0700 2009 [JBBUILD-513] Allow the app server distribution... [pgier]
directory build/ Wed Nov 04 18:22:03 -0800 2009 [JBBUILD-570] Use standard Maven groupId for st... [pgier]
directory client/ Mon Aug 10 07:29:20 -0700 2009 [JBAS-6993] Remove references to jboss-as-main ... [pgier]
directory cluster/ Wed Oct 14 18:10:14 -0700 2009 [JBAS-7209] Remove deprecated nodeAddress prope... [bstansberry@jboss.com]
directory component-matrix/ Sun Nov 08 09:34:07 -0800 2009 - JBoss Web alpha-16, with fixes. git-svn-id: ... [remy.maucherat@jboss.com]
directory connector/ Wed Sep 23 10:55:02 -0700 2009 [JBBUILD-541] Move source directories to match ... [pgier]
directory console/ Thu Oct 22 09:16:56 -0700 2009 JBAS-7307: masking all variations of password a... [mmoyses]
directory deployment/ Wed Sep 23 10:55:02 -0700 2009 [JBBUILD-541] Move source directories to match ... [pgier]
directory ejb3/ Fri Oct 16 04:03:01 -0700 2009 JBAS-7241: integrated new jboss-jpa components ... [wolfc]
directory hibernate-int/ Tue Oct 13 14:38:16 -0700 2009 Enable @JMX via type. git-svn-id: http://anons... [alesj]
directory iiop/ Wed Sep 23 10:55:02 -0700 2009 [JBBUILD-541] Move source directories to match ... [pgier]
directory jbossas-jmx-remoting/ Wed Sep 23 10:55:02 -0700 2009 [JBBUILD-541] Move source directories to match ... [pgier]
directory jbossas-remoting/ Fri Sep 25 12:57:37 -0700 2009 [JBBUILD-541] Move test source directories to m... [pgier]
directory jbossas-transactions/ Tue Jun 16 03:43:20 -0700 2009 Upgrade JBossTS to 4.6.1.GA. JBAS-7022 git-s... [jhalliday]
directory jmx-remoting/ Fri Sep 25 12:57:37 -0700 2009 [JBBUILD-541] Move test source directories to m... [pgier]
directory main/ Wed Sep 23 10:55:02 -0700 2009 [JBBUILD-541] Move source directories to match ... [pgier]
directory management/ Wed Sep 23 10:55:02 -0700 2009 [JBBUILD-541] Move source directories to match ... [pgier]
directory messaging/ Wed Sep 23 11:37:15 -0700 2009 [JBBUILD-541] Move source directories to match ... [pgier]
file pom.xml Fri Oct 23 09:16:22 -0700 2009 Specify plugin versions via properties git-svn... [bstansberry@jboss.com]
directory profileservice/ Wed Sep 23 17:12:52 -0700 2009 - Fix packaging after path update. git-svn-id:... [remy.maucherat@jboss.com]
directory security/ Tue Oct 06 11:04:01 -0700 2009 JBAS-3986: enabling the thread to be started/st... [mmoyses]
directory server/ Thu Nov 05 09:20:36 -0800 2009 - Drop early merging of web.xml into jboss-web.... [remy.maucherat@jboss.com]
directory system-jmx/ Wed Sep 23 11:37:15 -0700 2009 [JBBUILD-541] Move source directories to match ... [pgier]
directory system/ Wed Sep 23 11:37:15 -0700 2009 [JBBUILD-541] Move source directories to match ... [pgier]
directory testsuite/ Fri Nov 06 03:31:23 -0800 2009 [JBAS-7428] svn copy classes from ejb3 project ... [bstansberry@jboss.com]
directory tomcat/ Fri Nov 06 06:27:34 -0800 2009 - Oops, actually pass the right values. git-sv... [remy.maucherat@jboss.com]
directory tools/ Fri Aug 28 12:28:23 -0700 2009 [JBBUILD-553] Use a standard ant installation f... [pgier]
directory varia/ Tue Nov 03 19:40:33 -0800 2009 [JBAS-7426] Throw IllegalArgumentException, not... [ALRubinger]
directory webservices/ Fri Oct 16 16:56:07 -0700 2009 [JBAS-7382] updating to 3.2.1.Beta2 git-svn-id... [richard.opalka@jboss.com]
README.txt
JBoss Application Server
$Id$

Directory Structure
-------------------
build - Contains the build scripts for creating the complete JBoss AS distribution.
component-matrix - Contains Maven configuration which controls dependency versions.
testsuite - Contains code and build scripts for testing the application server
thirdparty - Used during the build process
tools - Various files used by the build (ant, maven, etc)

The remaining directories contain the various components of the application server.


Building
-------------------
From the root directory, run the build script "./build.sh" or "build.bat"
Or call maven directly "mvn install"

For slightly faster builds, the maven enforcer plugin can be skipped.
./build.sh -P-enforce

Generation of the source jars can be skipping by deactivating the sources
profile.
./build.sh -P-sources

During development you may want to build only a single module and update the 
distribution build.  This can be done using the property "module".
For example, to build the "ejb3" module and update the dist build, run the following:
./build.sh -Dmodule=ejb3


Running the Testsuite
--------------------
Change the the testsuite directory "cd testsuite"
Build the tests "./build.sh"
Run the tests "./build.sh tests"