You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tamaya.apache.org by pl...@apache.org on 2015/05/29 00:30:24 UTC

incubator-tamaya git commit: Updated content of the readme.

Repository: incubator-tamaya
Updated Branches:
  refs/heads/master 991f6dcda -> 0eeac92e5


Updated content of the readme.


Project: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/commit/0eeac92e
Tree: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/tree/0eeac92e
Diff: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/diff/0eeac92e

Branch: refs/heads/master
Commit: 0eeac92e5ea051d8dd874f0c97e7b671de10c67d
Parents: 991f6dc
Author: Oliver B. Fischer <pl...@apache.org>
Authored: Fri May 29 00:29:58 2015 +0200
Committer: Oliver B. Fischer <pl...@apache.org>
Committed: Fri May 29 00:29:58 2015 +0200

----------------------------------------------------------------------
 README.md | 22 +++++++++++++---------
 1 file changed, 13 insertions(+), 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/0eeac92e/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index 4e92537..33a6aa2 100644
--- a/README.md
+++ b/README.md
@@ -1,14 +1,18 @@
-# Building Apache Tamaya (incubating)
+# Apache Tamaya (incubating)
 
+Tamaya is a very powerful yet flexible configuration solution. It's core is built based on a few simple concepts. More information on Tamaya can be found
+on the [homepage of Apache Tamaya](http://tamaya.incubator.apache.org/).
 
-The Apache Tamaya project contains modules which are intended to be used with Java8 and others
-which are for Java7. 
+## Building Apache Tamaya
 
-This means if we like to release then we need to have both JDK-1.7 and JDK-1.8 
+The Apache Tamaya project contains modules which are intended to be used with Java 8 and others
+which are for Java 7.
+
+If you would like to build Tamaya you need to have both JDK 1.7 and JDK-1.8 
 installed on your computer.
 
 To tell Maven which JDK it should use for each of the projects we do leverage the 
-maven-toolchains-plugin and Mavens toolchains support.
+[Maven Toolchain Plugin](https://maven.apache.org/plugins/maven-toolchains-plugin/) and Mavens toolchains support.
 
 See the following links for more information
 
@@ -18,10 +22,10 @@ See the following links for more information
 The easiest way to setup your computer for being able to use toolchains is to 
 simply copy the provided `./toolchains.xml` sample to `~.m2/toolchains.xml` and 
 edit the paths to your own JDK installations.
-We activate the maven-toolchains-plugin with a 'java7' profile in all 
-the modules we need it.
 
-For building the java7 modules with JDK-1.7 you simply need to build Tamaya with
+If your Maven toolchain is installed correctly you can build Tamaya by the following command:
+
+    $> maven clean install
+
 
-    $> mvn clean install -Pjava7