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/04/03 17:04:49 UTC

incubator-tamaya git commit: Version information is now taken from the Maven project. It is overhanded by the Maven plugin to the Asciidoctor backend.

Repository: incubator-tamaya
Updated Branches:
  refs/heads/master 5d61215c6 -> a0777c11f


Version information is now taken from the Maven project. It is overhanded by the Maven plugin to the Asciidoctor backend.


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

Branch: refs/heads/master
Commit: a0777c11f5d36ed6e2b6c40e5ed82ebf5f68367d
Parents: 5d61215
Author: Oliver B. Fischer <pl...@apache.org>
Authored: Fri Apr 3 17:04:09 2015 +0200
Committer: Oliver B. Fischer <pl...@apache.org>
Committed: Fri Apr 3 17:04:09 2015 +0200

----------------------------------------------------------------------
 docs/mod_jodatime.adoc  | 2 +-
 docs/mod_resolver.adoc  | 2 +-
 docs/mod_resources.adoc | 2 +-
 docs/modules.adoc       | 2 +-
 docs/pom.xml            | 3 +++
 5 files changed, 7 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/a0777c11/docs/mod_jodatime.adoc
----------------------------------------------------------------------
diff --git a/docs/mod_jodatime.adoc b/docs/mod_jodatime.adoc
index 38deae2..cbaaf36 100644
--- a/docs/mod_jodatime.adoc
+++ b/docs/mod_jodatime.adoc
@@ -63,7 +63,7 @@ ant-styled resource patterns. To use this module add the following dependency:
 <dependency>
   <grooupId>org.apache.tamaya.ext</groupId>
   <artifactId>tamaya-jodatime</artifactId>
-  <version>CURRENT_VERSION</version>
+  <version>{tamayaVersion}</version>
 </dependency>
 -----------------------------------------------
 

http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/a0777c11/docs/mod_resolver.adoc
----------------------------------------------------------------------
diff --git a/docs/mod_resolver.adoc b/docs/mod_resolver.adoc
index c277784..2f36287 100644
--- a/docs/mod_resolver.adoc
+++ b/docs/mod_resolver.adoc
@@ -56,7 +56,7 @@ To benefit from dynamic value resolution you only must add the corresponding dep
 <dependency>
   <groupId>org.apache.tamaya.ext</groupId>
   <artifactId>tamaya-resolver</artifactId>
-  <version>...</version>
+  <version>{tamayaVersion}</version>
 </dependency>
 ===============================================
 

http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/a0777c11/docs/mod_resources.adoc
----------------------------------------------------------------------
diff --git a/docs/mod_resources.adoc b/docs/mod_resources.adoc
index 93adbee..7dc0e38 100644
--- a/docs/mod_resources.adoc
+++ b/docs/mod_resources.adoc
@@ -58,7 +58,7 @@ ant-styled resource patterns. To use this module add the following dependency:
 <dependency>
   <grooupId>org.apache.tamaya.ext</groupId>
   <artifactId>tamaya-resources</artifactId>
-  <version>CURRENT_VERSION</version>
+  <version>{tamayaVersion}</version>
 </dependency>
 -----------------------------------------------
 

http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/a0777c11/docs/modules.adoc
----------------------------------------------------------------------
diff --git a/docs/modules.adoc b/docs/modules.adoc
index e8e58a5..00dd3bc 100644
--- a/docs/modules.adoc
+++ b/docs/modules.adoc
@@ -3,7 +3,7 @@ Apache Tamaya -- Extension Modules
 :name: Tamaya
 :rootpackage: org.apache.tamaya
 :title: Apache Tamaya Extension Modules
-:revnumber: 0.1-SNAPSHOT
+:revnumber: {tamayaVersion}
 :revremark: Incubator
 :revdate: March 2015
 :longversion: {revnumber} ({revremark}) {revdate}

http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/a0777c11/docs/pom.xml
----------------------------------------------------------------------
diff --git a/docs/pom.xml b/docs/pom.xml
index 53b5d43..40bafe0 100644
--- a/docs/pom.xml
+++ b/docs/pom.xml
@@ -85,6 +85,9 @@ under the License.
                             <goal>process-asciidoc</goal>
                         </goals>
                         <configuration>
+                            <attributes>
+                                <tamayaVersion>${project.version}</tamayaVersion>
+                            </attributes>
                             <baseDir>${project.basedir}</baseDir>
                             <outputDirectory>target/adocs</outputDirectory>
                             <sourceHighlighter>coderay</sourceHighlighter>