public
Description: JBossAS from jboss.org
Homepage:
Clone URL: git://github.com/bobmcwhirter/jbossas.git
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/ Fri Nov 20 22:23:10 -0800 2009 [JBAS-7242] Ported mod_cluster integration from... [pferraro]
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 22 23:58:40 -0800 2009 JBAS-7478 Added exclusion to prevent jboss-ejb3... [jaikiran]
directory connector/ Fri Nov 13 14:30:39 -0800 2009 JBAS-7439 - jdbc3 driver error handling git-sv... [smarlow@redhat.com]
directory console/ Mon Nov 09 11:50:11 -0800 2009 Remove duplicate dependency declarations git-s... [pgier]
directory deployment/ Wed Sep 23 10:55:02 -0700 2009 [JBBUILD-541] Move source directories to match ... [pgier]
directory ejb3/ Mon Nov 09 11:50:11 -0800 2009 Remove duplicate dependency declarations git-s... [pgier]
directory hibernate-int/ Tue Nov 17 04:31:57 -0800 2009 [JBAS-7411] Make Hibernate deployer flexible re... [bstansberry@jboss.com]
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/ Fri Nov 20 22:23:10 -0800 2009 [JBAS-7242] Ported mod_cluster integration from... [pferraro]
directory system-jmx/ Wed Sep 23 11:37:15 -0700 2009 [JBBUILD-541] Move source directories to match ... [pgier]
directory system/ Wed Nov 18 11:01:09 -0800 2009 JBAS-7457, JBAS-6948 move all services out of t... [scott.stark@jboss.org]
directory testsuite/ Sun Nov 22 17:13:41 -0800 2009 - Drop removed managerClass property. git-svn-... [remy.maucherat@jboss.com]
directory tomcat/ Fri Nov 20 22:23:10 -0800 2009 [JBAS-7242] Ported mod_cluster integration from... [pferraro]
directory tools/ Fri Aug 28 12:28:23 -0700 2009 [JBBUILD-553] Use a standard ant installation f... [pgier]
directory varia/ Wed Nov 18 11:01:09 -0800 2009 JBAS-7457, JBAS-6948 move all services out of t... [scott.stark@jboss.org]
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"