bobmcwhirter / jbossas
- Source
- Commits
- Network (0)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
vendor
remy.maucherat@jboss.com (author)
Tue Feb 09 19:06:50 -0800 2010
jbossas /
| name | age | message | |
|---|---|---|---|
| |
.classpath | Mon Jan 11 09:43:35 -0800 2010 | |
| |
.gitignore | Mon Mar 02 01:34:07 -0800 2009 | |
| |
.project | ||
| |
.settings/ | Mon Jan 11 09:43:35 -0800 2010 | |
| |
README.txt | Wed Nov 25 08:28:51 -0800 2009 | |
| |
aspects/ | Tue Jan 26 08:51:18 -0800 2010 | |
| |
build.bat | Tue Mar 17 13:10:22 -0700 2009 | |
| |
build.sh | Wed Dec 23 07:36:36 -0800 2009 | |
| |
build/ | Mon Feb 08 15:24:57 -0800 2010 | |
| |
client/ | Mon Jan 18 07:23:07 -0800 2010 | |
| |
cluster/ | Thu Feb 04 02:40:54 -0800 2010 | |
| |
component-matrix/ | Tue Feb 09 07:58:46 -0800 2010 | |
| |
connector/ | Tue Feb 09 07:50:13 -0800 2010 | |
| |
console/ | Tue Feb 09 06:26:17 -0800 2010 | |
| |
deployment/ | Tue Jan 26 07:31:51 -0800 2010 | |
| |
ejb3/ | Tue Feb 09 07:20:23 -0800 2010 | |
| |
hibernate-int/ | ||
| |
iiop/ | Tue Jan 26 07:31:51 -0800 2010 | |
| |
jbossas-jmx-remoting/ | Tue Jan 26 07:31:51 -0800 2010 | |
| |
jbossas-remoting/ | Tue Jan 26 07:31:51 -0800 2010 | |
| |
jbossas-transactions/ | Mon Dec 14 08:16:18 -0800 2009 | |
| |
jmx-remoting/ | Tue Jan 26 07:31:51 -0800 2010 | |
| |
main/ | Tue Feb 09 13:44:00 -0800 2010 | |
| |
management/ | Fri Jan 29 08:03:53 -0800 2010 | |
| |
messaging/ | ||
| |
pom.xml | Fri Jan 29 08:47:29 -0800 2010 | |
| |
profileservice/ | Thu Jan 28 05:57:58 -0800 2010 | |
| |
resteasy-int/ | Wed Feb 03 14:21:30 -0800 2010 | |
| |
security/ | Thu Jan 28 06:04:29 -0800 2010 | |
| |
server/ | Tue Feb 09 10:49:36 -0800 2010 | |
| |
system-jmx/ | Tue Jan 26 07:31:51 -0800 2010 | |
| |
system/ | Mon Feb 08 08:34:29 -0800 2010 | |
| |
testsuite/ | Tue Feb 09 16:25:02 -0800 2010 | |
| |
tomcat/ | Tue Feb 09 19:06:50 -0800 2010 | |
| |
tools/ | Wed Dec 09 09:36:28 -0800 2009 | |
| |
varia/ | Mon Feb 08 06:58:38 -0800 2010 | |
| |
webservices/ |
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 A full zip of the distribution build can be created using the "dist-zip" profile. ./build.sh -Pdist-zip Running the Testsuite -------------------- Change the the testsuite directory "cd testsuite" Build the tests "./build.sh" Run the tests "./build.sh tests"

