Use AsyncExecutorService instead of ExecutorService
[smart-dao.git] / smart-cache / pom.xml
blobb1a1c22fd9abd147de198c2dab1a320b0ef7a202
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  *   
4  * This is a common dao with basic CRUD operations and is not limited to any 
5  * persistent layer implementation
6  * 
7  * Copyright (C) 2008  Imran M Yousuf (imyousuf@smartitengineering.com)
8  * 
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public
11  * License as published by the Free Software Foundation; either
12  * version 3 of the License, or (at your option) any later version.
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
20  *
21  *
22 -->
23 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
25     <modelVersion>4.0.0</modelVersion>
26     <parent>
27         <groupId>com.smartitengineering</groupId>
28         <artifactId>smart-dao</artifactId>
29         <version>0.4-SNAPSHOT</version>
30     </parent>
31     <groupId>com.smartitengineering</groupId>
32     <artifactId>smart-cache</artifactId>
33     <packaging>jar</packaging>
34     <version>${parent.version}</version>
35     <name>smart-cache</name>
36     <description>
37         This module provides an API and default implementation for Cache Service.
38         It also integrates with Smart Abstract DAO so that read/write through
39         cache implementation becomes a lot easier. In future we will have an
40         implementation based on the Cache JSR.
41     </description>
42     <build>
43         <plugins>
44             <plugin>
45                 <groupId>org.apache.maven.plugins</groupId>
46                 <artifactId>maven-assembly-plugin</artifactId>
47             </plugin>
48         </plugins>
49     </build>
50     <dependencies>
51         <dependency>
52             <groupId>junit</groupId>
53             <artifactId>junit</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>org.jmock</groupId>
57             <artifactId>jmock</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>org.jmock</groupId>
61             <artifactId>jmock-junit3</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>net.sf.ehcache</groupId>
65             <artifactId>ehcache</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>com.smartitengineering</groupId>
69             <artifactId>smart-domain</artifactId>
70         </dependency>
71     </dependencies>
72 </project>