Author: buildbot
Date: Fri Aug 2 11:45:28 2019
New Revision: 1048288
Log:
Staging update by buildbot for openwebbeans
Modified:
websites/staging/openwebbeans/trunk/content/ (props changed)
websites/staging/openwebbeans/trunk/content/source.html
Propchange: websites/staging/openwebbeans/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Fri Aug 2 11:45:28 2019
@@ -1 +1 @@
-1864218
+1864219
Modified: websites/staging/openwebbeans/trunk/content/source.html
==============================================================================
--- websites/staging/openwebbeans/trunk/content/source.html (original)
+++ websites/staging/openwebbeans/trunk/content/source.html Fri Aug 2 11:45:28
2019
@@ -83,41 +83,33 @@ h2:hover > .headerlink, h3:hover > .head
<p>We are always looking for new contributors to the project.</p>
<p>Pleaes see our <a href="community.html">Community Section</a> for more
information.</p>
<h1 id="cannonical-source-repository">Cannonical Source Repository<a
class="headerlink" href="#cannonical-source-repository" title="Permanent
link">¶</a></h1>
-<p>The sources of Apache OpenWebBeans are maintained in the Apache Software
Foundation Subversion repository.
-This is the repository where all committers work on.</p>
-<p>The SVN trunk currently contains our effort to implement the CDI-2.0
specification and is considered production ready.</p>
+<p>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.</p>
+<p>The master branch currently contains our implementation of the CDI-2.0
specification and is considered production ready.</p>
<p>The sources can be checked out read only with the following command:</p>
<pre>
-svn co http://svn.apache.org/repos/asf/openwebbeans/trunk openwebbeans
+$> git clone https://github.com/apache/openwebbeans
</pre>
-<p>If you have commit rights, then you should use</p>
+<p>or
<pre>
-svn co https://svn.apache.org/repos/asf/openwebbeans/trunk openwebbeans
-</pre>
-
+$> git clone https://gitbox.apache.org/repos/asf/openwebbeans.git
+</pre></p>
<h2 id="maintenance-releases-targetting-older-cdi-specifications">Maintenance
releases targetting older CDI specifications<a class="headerlink"
href="#maintenance-releases-targetting-older-cdi-specifications"
title="Permanent link">¶</a></h2>
<h3 id="cdi-12-openwebbeans-17x">CDI-1.2 - OpenWebBeans-1.7.x<a
class="headerlink" href="#cdi-12-openwebbeans-17x" title="Permanent
link">¶</a></h3>
<p>For checking out sources of the stable CDI-1.2 version of OpenWebBeans,
please use the owb_1.7.x branch from here:</p>
<pre>
-svn co http://svn.apache.org/repos/asf/openwebbeans/branches/owb_1.7.x/
-</pre>
-
-<h3 id="cdi-10-openwebbeans-11x">CDI-1.0 - OpenWebBeans-1.1.x<a
class="headerlink" href="#cdi-10-openwebbeans-11x" title="Permanent
link">¶</a></h3>
-<p>For checking out sources of the stable CDI-1.0 version of OpenWebBeans,
please use the owb_1.1.x branch from here:</p>
-<pre>
-svn co http://svn.apache.org/repos/asf/openwebbeans/branches/owb_1.1.x/
-</pre>
-
-<h1 id="git-mirrors">GIT mirrors<a class="headerlink" href="#git-mirrors"
title="Permanent link">¶</a></h1>
-<p>We also provide GIT mirrors from our SVN repository</p>
-<pre>
-git clone git://git.apache.org/openwebbeans.git
+$> git clone https://github.com/apache/openwebbeans
+$> git checkout owb_1.7.x
</pre>
-<p>Another mirror is available on github:</p>
+<h3 id="cdi-10-openwebbeans-12x">CDI-1.0 - OpenWebBeans-1.2.x<a
class="headerlink" href="#cdi-10-openwebbeans-12x" title="Permanent
link">¶</a></h3>
+<p>For checking out sources of the stable CDI-1.0 version of OpenWebBeans,
please use the owb_1.2.x branch from here:</p>
<pre>
-https://github.com/apache/openwebbeans
+$> git clone https://github.com/apache/openwebbeans
+$> git checkout owb_1.2.x
</pre>
<h1 id="building-openwebbeans">Building OpenWebBeans<a class="headerlink"
href="#building-openwebbeans" title="Permanent link">¶</a></h1>
@@ -131,7 +123,7 @@ mvn clean install
<li>tck - for executing the CDI (JSR-299, JSR-346 resp JSR-365) standalone
TCK</li>
<li>jsr330-tck - for executing the JSR-330 'atinject' TCK</li>
</ul>
-<p>In trunk they are all activated by default and run every time you build
OpenWebBeans.</p>
+<p>In master they are all activated by default and run every time you build
OpenWebBeans.</p>
<p>For older OpenWebBeans versions you might enable them manually.</p>
<pre>
mvn clean install -Ptck -Pjsr330-tck -Pdoc