You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwebbeans.apache.org by jl...@apache.org on 2012/12/11 11:03:56 UTC

svn commit: r1420059 - /openwebbeans/cms-site/trunk/content/source.mdtext

Author: jlmonteiro
Date: Tue Dec 11 10:03:55 2012
New Revision: 1420059

URL: http://svn.apache.org/viewvc?rev=1420059&view=rev
Log:
Trying to submit a first draft of the source page

Added:
    openwebbeans/cms-site/trunk/content/source.mdtext

Added: openwebbeans/cms-site/trunk/content/source.mdtext
URL: http://svn.apache.org/viewvc/openwebbeans/cms-site/trunk/content/source.mdtext?rev=1420059&view=auto
==============================================================================
--- openwebbeans/cms-site/trunk/content/source.mdtext (added)
+++ openwebbeans/cms-site/trunk/content/source.mdtext Tue Dec 11 10:03:55 2012
@@ -0,0 +1,46 @@
+Title: Source
+
+We are always looking for new contributors to the project.
+
+# Mailing Lists
+
+Please join our discussions about the project in our mailing lists by sending an informal email to
+
+> user-subscribe@openwebbeans.apache.org
+for any usage specific questions, and
+
+> dev-subscribe@openwebbeans.apache.org
+for bugs and feature discussions.
+
+# Issue Tracking
+
+Bug reports and feature requests will be maintained via JIRA at
+
+> https://issues.apache.org/jira/browse/OWB
+
+# Source Repository
+
+The sources of Apache OpenWebBeans are maintained in the Apache Software Foundation Subversion repository.
+
+The sources can be checked out read only with the following command:
+
+> svn co http://svn.apache.org/repos/asf/openwebbeans/trunk openwebbeans
+If you have commit rights, then you should use
+
+> svn co https://svn.apache.org/repos/asf/openwebbeans/trunk openwebbeans
+
+# Building OpenWebBeans
+
+Apache OpenWebBeans can be built by using Apache Maven. Just go into the source directory and execute
+
+> mvn clean install
+The following maven profiles exist in our build to trigger additional build steps and configuration:
+
+* tck - for executing the JSR-299 standalone TCK
+* jsr330-tck - for executing the JSR-330 TCK
+* doc - for building the documentation PDF from docbook
+
+
+To activate all of them use
+
+> mvn clean install -Ptck -Pjsr330-tck -Pdoc