You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2017/12/30 21:42:11 UTC

[directory-mavibot] 01/03: Bumped up some dependencies. Used Caffeine cache instead of ehcache. Require Java 8

This is an automated email from the ASF dual-hosted git repository.

elecharny pushed a commit to branch single-value
in repository https://gitbox.apache.org/repos/asf/directory-mavibot.git

commit 013a3f4e446bb4a64e60d5c9081e9daa2fba8c26
Author: Emmanuel Lécharny <el...@symas.com>
AuthorDate: Fri Dec 29 23:57:27 2017 +0100

    Bumped up some dependencies. Used Caffeine cache instead of ehcache. Require Java 8
---
 pom.xml | 26 +++++++++++++++++---------
 1 file changed, 17 insertions(+), 9 deletions(-)

diff --git a/pom.xml b/pom.xml
index 55bd8eb..0a9e5fe 100644
--- a/pom.xml
+++ b/pom.xml
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.directory.project</groupId>
     <artifactId>project</artifactId>
-    <version>34</version>
+    <version>41</version>
     <relativePath />
   </parent>
 
@@ -77,11 +77,12 @@
 
   <properties>
     <!-- Dependencies versions ========================================== -->
-    <junit.version>4.12</junit.version>
+    <com.github.ben-manes.caffeine.version>2.6.0</com.github.ben-manes.caffeine.version>
     <commons.collections.version>3.2.1</commons.collections.version>
     <commons.io.version>2.4</commons.io.version>
-    <slf4j.api.version>1.7.10</slf4j.api.version>
-    <slf4j.log4j12.version>1.7.10</slf4j.log4j12.version>
+    <junit.version>4.12</junit.version>
+    <slf4j.api.version>1.7.25</slf4j.api.version>
+    <slf4j.log4j12.version>1.7.25</slf4j.log4j12.version>
   </properties>
 
   <modules>
@@ -91,6 +92,13 @@
 
   <dependencyManagement>
     <dependencies>
+      <!-- Cache -->
+      <dependency>
+        <groupId>com.github.ben-manes.caffeine</groupId>
+        <artifactId>caffeine</artifactId>
+        <version>${com.github.ben-manes.caffeine.version}</version>
+      </dependency>
+    
       <!-- Testing -->
       <dependency>
         <groupId>junit</groupId>
@@ -164,22 +172,22 @@
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-compiler-plugin</artifactId>
         <configuration>
-          <source>1.6</source>
-          <target>1.6</target>
+          <source>1.8</source>
+          <target>1.8</target>
           <optimize>true</optimize>
-		  <debug>true</debug>
+          <debug>true</debug>
           <showDeprecations>true</showDeprecations>
           <encoding>UTF-8</encoding>
         </configuration>
       </plugin>
-	  
+
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-source-plugin</artifactId>
         <executions>
           <execution>
             <id>attach-source</id>
-			<phase>verify</phase>
+            <phase>verify</phase>
             <goals>
               <goal>jar-no-fork</goal>
             </goals>

-- 
To stop receiving notification emails like this one, please contact
"commits@directory.apache.org" <co...@directory.apache.org>.