mybatis-oscache
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis-oscache</artifactId> <version>1.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright 2010 The MyBatis Team Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <!-- version: $Id: pom.xml 3511 2010-12-31 21:11:04Z simone.tripodi $ --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <parent> <groupId>org.mybatis</groupId> <artifactId>mybatis-parent</artifactId> <version>8</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>mybatis-oscache</artifactId> <packaging>jar</packaging> <name>MyBatis Caches :: OSCache</name> <version>1.0.0</version> <description>OSCache support for MyBatis Cache</description> <scm> <url>scm:svn:http://mybatis.googlecode.com/svn/sub-projects/caches/tags/mybatis-oscache-1.0.0</url> <connection>scm:svn:https://mybatis.googlecode.com/svn/sub-projects/caches/tags/mybatis-oscache-1.0.0</connection> <developerConnection>scm:svn:https://mybatis.googlecode.com/svn/sub-projects/caches/tags/mybatis-oscache-1.0.0</developerConnection> </scm> <properties> <findbugs.onlyAnalyze>org.mybatis.caches.oscache.*</findbugs.onlyAnalyze> <clirr.comparisonVersion>1.0.0-RC1</clirr.comparisonVersion> <gcu.product>Cache</gcu.product> </properties> <dependencies> <!-- | Provided dependencies --> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>3.0.4</version> <scope>provided</scope> </dependency> <!-- | compile dependencies --> <dependency> <groupId>opensymphony</groupId> <artifactId>oscache</artifactId> <version>2.4</version> <scope>compile</scope> <exclusions> <exclusion> <groupId>javax.jms</groupId> <artifactId>jms</artifactId> </exclusion> <exclusion> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> </exclusion> </exclusions> </dependency> <!-- | test dependencies --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.1</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <configuration> <arguments>-Prelease,docbook,bundle,gupload</arguments> </configuration> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>2.2</version> <reportSets> <reportSet> <reports> <report>dependencies</report> <report>dependency-convergence</report> <report>index</report> <report>summary</report> </reports> </reportSet> </reportSets> </plugin> </plugins> </reporting> </project>