Author: cziegeler
Date: Tue Mar 3 14:06:41 2020
New Revision: 1874721
URL: http://svn.apache.org/viewvc?rev=1874721&view=rev
Log:
Update some documentation to git
Modified:
felix/site/trunk/content/documentation/development/building-felix.mdtext
felix/site/trunk/content/documentation/development/source-code.mdtext
Modified:
felix/site/trunk/content/documentation/development/building-felix.mdtext
URL:
http://svn.apache.org/viewvc/felix/site/trunk/content/documentation/development/building-felix.mdtext?rev=1874721&r1=1874720&r2=1874721&view=diff
==============================================================================
--- felix/site/trunk/content/documentation/development/building-felix.mdtext
(original)
+++ felix/site/trunk/content/documentation/development/building-felix.mdtext
Tue Mar 3 14:06:41 2020
@@ -1,9 +1,9 @@
-Title: Building Felix
+Title: Building Apache Felix
In most cases you might only be interested in one or two sub projects.
However, you still might want to check out all sub projects in one go.
To get started:
- Most Apache Felix projects use Apache Maven as the build tool. Therefore,
download and install the latest Apache Maven 3 release.
-- Check out or update the Felix trunk (i.e., `svn checkout
http://svn.apache.org/repos/asf/felix/trunk felix`).
-- Go to sub project you're interested in and type: "mvn clean install" to
build it. If this project is not using Maven, refer to the docs for the sub
project on how to build it.
+- Check out or update the `felix-dev` git repository (i.e., `git clone
https://github.com/apache/felix-dev.git`).
+- Go to the sub project you're interested in and type: "mvn clean install" to
build it. If this project is not using Maven, refer to the docs for the sub
project on how to build it.
Modified: felix/site/trunk/content/documentation/development/source-code.mdtext
URL:
http://svn.apache.org/viewvc/felix/site/trunk/content/documentation/development/source-code.mdtext?rev=1874721&r1=1874720&r2=1874721&view=diff
==============================================================================
--- felix/site/trunk/content/documentation/development/source-code.mdtext
(original)
+++ felix/site/trunk/content/documentation/development/source-code.mdtext Tue
Mar 3 14:06:41 2020
@@ -1,48 +1,21 @@
Title: Source Code
-This project uses [Subversion](http://subversion.apache.org/) to manage its
source code. Instructions on Subversion use can be found at
[http://svnbook.red-bean.com/].
+This project uses [git](https://git-scm.com/) to manage its source code.
Instructions on git can be found at [https://git-scm.com/docs].
# Web Access
The following is a link to the online source repository.
-[http://svn.apache.org/viewvc/felix/](http://svn.apache.org/viewvc/felix/)
+[https://github.com/apache/felix-dev]https://github.com/apache/felix-dev)
# Anonymous access
-The Felix trunk can be checked out anonymously with the following command:
+The Felix master can be checked out anonymously with the following command:
:::sh
- $ svn checkout http://svn.apache.org/repos/asf/felix/trunk felix-trunk
+ $ git clone https://github.com/apache/felix-dev
+# Developer access
-If you are a Felix committer, you should use `https` as the protocol in the
above URL.
+Committers of the Apache Felix project can use the same above command to
checkout the source.
-The source for individual subprojects can be checked out by simply adding
their directory name in the repository to the end of the above trunk URL. Use
the "web access" link above to determine the precise portion of the repository
you wish to check out.
-
-# Access from behind a firewall
-
-Refer to the documentation of the SCM used for more information about an
access behind a firewall.
-
-# Access through a proxy
-
-The Subversion client can go through a proxy, if you configure it to do so.
First, edit your `servers` configuration file to indicate which proxy to use.
The files location depends on your operating system. On Linux or Unix it is
located in the directory `~/.subversion`. On Windows it is in
`%APPDATA%\Subversion`. (Try `echo %APPDATA%`, note this is a hidden directory.)
-
-There are comments in the file explaining what to do. If you don't have that
file, get the latest Subversion client and run any command; this will cause the
configuration directory and template files to be created.
-
-Example : Edit the `servers` file and add something like :
-
-
- [global]
- http-proxy-host = your.proxy.name
- http-proxy-port = 3128
-
-
-# Migrating your repository
-
-For people with checked out copies of the original incubator repository, you
will need to use the "svn switch" command to associate your workspace with the
new URL. The command for doing this for the trunk is:
-
- :::sh
- $ svn switch https://svn.apache.org/repos/asf/felix/trunk
-
-If you have other directories checked out, e.g., sandbox or releases, then you
will need to do for those too, modifying the above URL accordingly.