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/01/24 23:15:26 UTC

incubator-tamaya git commit: TAMAYA-60 Added Mockito to the list of managed dependencies.

Repository: incubator-tamaya
Updated Branches:
  refs/heads/master 2a2f861e4 -> c312fff58


TAMAYA-60 Added Mockito to the list of managed dependencies.


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

Branch: refs/heads/master
Commit: c312fff58bf151bc9a9ee507e3f424526d4ba361
Parents: 2a2f861
Author: Oliver B. Fischer <pl...@apache.org>
Authored: Sat Jan 24 23:14:28 2015 +0100
Committer: Oliver B. Fischer <pl...@apache.org>
Committed: Sat Jan 24 23:15:24 2015 +0100

----------------------------------------------------------------------
 modules/builder/pom.xml | 5 +++++
 pom.xml                 | 7 +++++++
 2 files changed, 12 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/c312fff5/modules/builder/pom.xml
----------------------------------------------------------------------
diff --git a/modules/builder/pom.xml b/modules/builder/pom.xml
index 6a3078d..5b37004 100644
--- a/modules/builder/pom.xml
+++ b/modules/builder/pom.xml
@@ -50,6 +50,11 @@ under the License.
         </dependency>
 
         <dependency>
+            <groupId>org.mockito</groupId>
+            <artifactId>mockito-core</artifactId>
+        </dependency>
+
+        <dependency>
             <groupId>junit</groupId>
             <artifactId>junit</artifactId>
         </dependency>

http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/c312fff5/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index f51c6a4..84e6bc6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -69,6 +69,7 @@ under the License.
         <!-- Must/should match the JRuby version used by AsciidoctorJ -->
         <jruby.version>1.7.16.1</jruby.version>
         <findbugs.version>3.0.0</findbugs.version>
+        <mockito.version>1.10.6</mockito.version>
         <rat.version>0.11</rat.version>
         <toolchains.plugin>1.1</toolchains.plugin>
     </properties>
@@ -240,6 +241,12 @@ under the License.
             </dependency>
 
             <dependency>
+                <groupId>org.mockito</groupId>
+                <artifactId>mockito-core</artifactId>
+                <version>${mockito.version}</version>
+            </dependency>
+
+            <dependency>
                 <groupId>rubygems</groupId>
                 <artifactId>asciidoctor-diagram</artifactId>
                 <version>${asciidoctor-diagramm.version}</version>