dinesh94 / simple-spring-memcached

Automatically exported from code.google.com/p/simple-spring-memcached
MIT License
0 stars 0 forks source link

Providers in separated modules #2

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago

Available memcached providers: xmemcached and spymemcached should be moved to 
separated modules (artifact): ssm-xmemcached-provider and 
ssm-spymemcached-provider.

Currently using ssm with xmemcached requires two dependencies:

   <dependency>
    <groupId>com.google.code.simple-spring-memcached</groupId>
    <artifactId>simple-spring-memcached</artifactId>
    <version>2.0.0</version>
   </dependency>
   <dependency>
    <groupId>com.googlecode.xmemcached</groupId>
    <artifactId>xmemcached</artifactId>
    <version>1.3.5</version>
   </dependency> 

after changes only one dependency will be required:

   <dependency>
    <groupId>com.google.code.simple-spring-memcached</groupId>
    <artifactId>ssm-xmemcached-provider</artifactId>
    <version>2.1.0</version>
   </dependency>

Original issue reported on code.google.com by ragno...@gmail.com on 19 Apr 2012 at 6:31

GoogleCodeExporter commented 9 years ago

Original comment by ragno...@gmail.com on 27 Apr 2012 at 6:18

GoogleCodeExporter commented 9 years ago
Code in trunk.

<dependency>
    <groupId>com.google.code.simple-spring-memcached</groupId>
    <artifactId>xmemcached-provider</artifactId>
    <version>?<version>
</dependency>

or

<dependency>
    <groupId>com.google.code.simple-spring-memcached</groupId>
    <artifactId>spymemcached-provider</artifactId>
    <version>?<version>
</dependency>

Original comment by ragno...@gmail.com on 13 May 2012 at 6:20

GoogleCodeExporter commented 9 years ago

Original comment by ragno...@gmail.com on 12 Jul 2012 at 8:18

GoogleCodeExporter commented 9 years ago

Original comment by ragno...@gmail.com on 12 Jul 2012 at 8:24

GoogleCodeExporter commented 9 years ago
Available in 3.0.0

Original comment by ragno...@gmail.com on 26 Jul 2012 at 5:27