Download mybatis-ehcache-1.0.3.jar file

Introduction

You can download mybatis-ehcache-1.0.3.jar in this page.

License

Apache License

Type List

mybatis-ehcache-1.0.3.jar file has the following types.

META-INF/LICENSE
META-INF/MANIFEST.MF
META-INF/NOTICE
META-INF/maven/org.mybatis.caches/mybatis-ehcache/pom.properties
META-INF/maven/org.mybatis.caches/mybatis-ehcache/pom.xml
org.mybatis.caches.ehcache.DummyReadWriteLock.class
org.mybatis.caches.ehcache.EhcacheCache.class
org.mybatis.caches.ehcache.LoggingEhcache.class

Pom

mybatis-ehcache-1.0.3.pom file content.

<?xml version="1.0" encoding="UTF-8"?>
<!--
  Copyright 2010-2013 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.
-->
<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">
  <modelVersion>4.0.0</modelVersion>

  <parent>
    <groupId>org.mybatis</groupId>
    <artifactId>mybatis-parent</artifactId>
    <version>21</version>
  </parent>

  <groupId>org.mybatis.caches</groupId>
  <artifactId>mybatis-ehcache</artifactId>
  <version>1.0.3</version>
  <packaging>jar</packaging>

  <name>MyBatis Caches :: Ehcache</name>
  <description>Ehcache support for MyBatis Cache</description>
  <url>http://www.mybatis.org/caches/ehcache/</url>

  <scm>
    <url>http://github.com/mybatis/ehcache-cache</url>
    <connection>scm:git:ssh://github.com/mybatis/ehcache-cache.git</connection>
    <developerConnection>scm:git:git+ssh://git@github.com/mybatis/ehcache-cache.git</developerConnection>
    <tag>mybatis-ehcache-1.0.3</tag>
  </scm>
  <issueManagement>
    <system>GitHub Issue Management</system>
    <url>https://github.com/mybatis/ehcache-cache/issues</url>
  </issueManagement>
  <ciManagement>
    <system>Travis CI</system>
    <url>https://travis-ci.org/mybatis/ehcache-cache</url>
  </ciManagement>
  <distributionManagement>
    <site>
      <id>github</id>
      <url>gitsite:git@github.com/mybatis/ehcache-cache.git</url>
    </site>
  </distributionManagement>

  <properties>
    <findbugs.onlyAnalyze>org.mybatis.caches.ehcache.*</findbugs.onlyAnalyze>
    <clirr.comparisonVersion>1.0.2</clirr.comparisonVersion>
    <gcu.product>Cache</gcu.product>
  </properties>

  <dependencies>
    <!--
     | Provided dependencies
    -->
    <dependency>
      <groupId>org.mybatis</groupId>
      <artifactId>mybatis</artifactId>
      <version>3.2.6</version>
      <scope>provided</scope>
    </dependency>

    <!--
     | compile dependencies
    -->
    <dependency>
      <groupId>net.sf.ehcache</groupId>
      <artifactId>ehcache-core</artifactId>
      <version>2.6.8</version>
      <scope>compile</scope>
    </dependency>

    <!--
     | trick to fix javadoc generation
    -->
    <dependency>
      <groupId>javax.transaction</groupId>
      <artifactId>jta</artifactId>
      <version>1.1</version>
      <scope>provided</scope>
    </dependency>

    <!--
     | test dependencies
    -->
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.11</version>
      <scope>test</scope>
    </dependency>
  </dependencies>

</project>

POM Entry

<dependency>
   <groupId>org.mybatis.caches</groupId>
   <artifactId>mybatis-ehcache</artifactId>
   <version>1.0.3</version>
</dependency>

Download

If you think the following mybatis-ehcache-1.0.3.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download mybatis-ehcache-1.0.3.jar file




PreviousNext

Related