Author: struberg
Date: Fri Aug 2 11:45:21 2019
New Revision: 1864219
URL: http://svn.apache.org/viewvc?rev=1864219&view=rev
Log:
reflect our move from SVN to GitBox
Modified:
openwebbeans/cms-site/trunk/content/source.mdtext
Modified: openwebbeans/cms-site/trunk/content/source.mdtext
URL:
http://svn.apache.org/viewvc/openwebbeans/cms-site/trunk/content/source.mdtext?rev=1864219&r1=1864218&r2=1864219&view=diff
==============================================================================
--- openwebbeans/cms-site/trunk/content/source.mdtext (original)
+++ openwebbeans/cms-site/trunk/content/source.mdtext Fri Aug 2 11:45:21 2019
@@ -24,23 +24,25 @@ Pleaes see our [Community Section](commu
# Cannonical Source Repository
-The sources of Apache OpenWebBeans are maintained in the Apache Software
Foundation Subversion repository.
+The sources of Apache OpenWebBeans are maintained in the Apache Software
Foundation gitbox repository.
This is the repository where all committers work on.
+It gets mirrored to GitHub in both directions.
+That means you can either push to Apache GitBox or GitHub.
-The SVN trunk currently contains our effort to implement the CDI-2.0
specification and is considered production ready.
+The master branch currently contains our implementation of the CDI-2.0
specification and is considered production ready.
The sources can be checked out read only with the following command:
<pre>
-svn co http://svn.apache.org/repos/asf/openwebbeans/trunk openwebbeans
+$> git clone https://github.com/apache/openwebbeans
</pre>
-If you have commit rights, then you should use
-
+or
<pre>
-svn co https://svn.apache.org/repos/asf/openwebbeans/trunk openwebbeans
+$> git clone https://gitbox.apache.org/repos/asf/openwebbeans.git
</pre>
+
## Maintenance releases targetting older CDI specifications
### CDI-1.2 - OpenWebBeans-1.7.x
@@ -48,30 +50,17 @@ svn co https://svn.apache.org/repos/asf/
For checking out sources of the stable CDI-1.2 version of OpenWebBeans, please
use the owb_1.7.x branch from here:
<pre>
-svn co http://svn.apache.org/repos/asf/openwebbeans/branches/owb_1.7.x/
-</pre>
-
-### CDI-1.0 - OpenWebBeans-1.1.x
-
-For checking out sources of the stable CDI-1.0 version of OpenWebBeans, please
use the owb_1.1.x branch from here:
-
-<pre>
-svn co http://svn.apache.org/repos/asf/openwebbeans/branches/owb_1.1.x/
+$> git clone https://github.com/apache/openwebbeans
+$> git checkout owb_1.7.x
</pre>
+### CDI-1.0 - OpenWebBeans-1.2.x
-# GIT mirrors
-
-We also provide GIT mirrors from our SVN repository
-
-<pre>
-git clone git://git.apache.org/openwebbeans.git
-</pre>
-
-Another mirror is available on github:
+For checking out sources of the stable CDI-1.0 version of OpenWebBeans, please
use the owb_1.2.x branch from here:
<pre>
-https://github.com/apache/openwebbeans
+$> git clone https://github.com/apache/openwebbeans
+$> git checkout owb_1.2.x
</pre>
@@ -89,7 +78,7 @@ The following maven profiles exist in ou
* jsr330-tck - for executing the JSR-330 'atinject' TCK
-In trunk they are all activated by default and run every time you build
OpenWebBeans.
+In master they are all activated by default and run every time you build
OpenWebBeans.
For older OpenWebBeans versions you might enable them manually.