mybatis
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>3.1.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright 2009-2012 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 4114 2011-11-27 19:03:32Z 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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.mybatis</groupId> <artifactId>mybatis-parent</artifactId> <version>14</version> </parent> <artifactId>mybatis</artifactId> <version>3.1.0</version> <packaging>jar</packaging> <name>MyBatis</name> <description> The MyBatis data mapper framework makes it easier to use a relational database with object-oriented applications. MyBatis couples objects with stored procedures or SQL statements using a XML descriptor or annotations. Simplicity is the biggest advantage of the MyBatis data mapper over object relational mapping tools. </description> <url>http://www.mybatis.org/core/</url> <contributors> <contributor> <name>Andrea Selva</name> <email>selva.andre@gmail.com</email> </contributor> <contributor> <name>Andrew Gustafson</name> <email>gus4000@gmail.com</email> </contributor> <contributor> <name>Antonio Sánchez</name> <email>juntandolineas@gmail.com</email> </contributor> <contributor> <name>Arkadi Shishlov</name> <email>arkadi.shishlov@gmail.com</email> </contributor> <contributor> <name>Franta Mejta</name> <email>mejta@rewor.org</email> </contributor> <contributor> <name>Jurriaan Pruys</name> <email>jurriaan@pruys.com</email> </contributor> <contributor> <name>Keith Wong</name> <email>wongkwl@gmail.com</email> </contributor> <contributor> <name>Riccardo Cossu</name> <email>riccardo.cossu@gmail.com</email> </contributor> </contributors> <scm> <url>scm:svn:https://mybatis.googlecode.com/svn/trunk</url> <connection>scm:svn:https://mybatis.googlecode.com/svn/trunk</connection> <developerConnection>scm:svn:https://mybatis.googlecode.com/svn/trunk</developerConnection> </scm> <distributionManagement> <!-- Cannot define in parent ATM, see COMMONSSITE-26 --> <site> <id>mybatis.site</id> <!-- | make it overridible, FTP is terribly slow when launched from Maven Wagon | an alternative strategy could be deploying the site locally | | -Dsite.deploymentUrl=file://... | | then async redeploying it via Filezilla/whatelese --> <url>${site.deploymentUrl}</url> </site> </distributionManagement> <properties> <findbugs.onlyAnalyze>org.apache.ibatis.*</findbugs.onlyAnalyze> <clirr.comparisonVersion>3.0.6</clirr.comparisonVersion> <osgi.export>org.apache.ibatis.*;version=${project.version};-noimport:=true</osgi.export> <osgi.import>!ognl,net.sf.cglib.proxy;resolution:=optional,org.apache.commons.logging;resolution:=optional,org.apache.log4j;resolution:=optional,org.slf4j;resolution:=optional,*</osgi.import> <osgi.dynamicImport>*</osgi.dynamicImport> <!-- | see distributionManagement.site.url --> <site.deploymentUrl>ftp://${mybatis.host}/core/</site.deploymentUrl> </properties> <dependencies> <dependency> <groupId>ognl</groupId> <artifactId>ognl</artifactId> <version>2.6.9</version> <scope>provided</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.6.2</version> <optional>true</optional> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>1.6.2</version> <optional>true</optional> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.16</version> <optional>true</optional> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.1.1</version> <optional>true</optional> </dependency> <dependency> <groupId>cglib</groupId> <artifactId>cglib</artifactId> <version>2.2.2</version> <optional>true</optional> </dependency> <!-- Test dependencies --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.10</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hsqldb</groupId> <artifactId>hsqldb</artifactId> <version>2.2.4</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.derby</groupId> <artifactId>derby</artifactId> <version>10.3.2.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jmock</groupId> <artifactId>jmock-junit4</artifactId> <version>2.5.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jmock</groupId> <artifactId>jmock-legacy</artifactId> <version>2.5.1</version> <scope>test</scope> <exclusions> <exclusion> <groupId>cglib</groupId> <artifactId>cglib-nodep</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>commons-dbcp</groupId> <artifactId>commons-dbcp</artifactId> <version>1.4</version> <scope>test</scope> </dependency> <dependency> <groupId>javax.transaction</groupId> <artifactId>transaction-api</artifactId> <version>1.1</version> <scope>test</scope> </dependency> <!-- postgresql driver is required to run the refcursor tests --> <dependency> <groupId>postgresql</groupId> <artifactId>postgresql</artifactId> <version>9.0-801.jdbc3</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-pdf-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <configuration> <arguments>-Prelease,bundle,gupload</arguments> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>jarjar-maven-plugin</artifactId> <executions> <execution> <id>jarjar-classes</id> <phase>compile</phase> <goals> <goal>jarjar</goal> </goals> <configuration> <input>{classes}</input> <includes> <include>ognl:ognl</include> </includes> <rules> <rule> <pattern>ognl.**</pattern> <result>org.apache.ibatis.ognl.@1</result> </rule> <keep> <pattern>org.apache.ibatis.**</pattern> </keep> </rules> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <configuration> <locales>en,es,ja,zh_CN,ko</locales> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <configuration> <instrumentation> <ignores> <ignore>org.apache.ibatis.ognl.*</ignore> </ignores> <excludes> <exclude>org/apache/ibatis/ognl/**/*.class</exclude> </excludes> </instrumentation> </configuration> <executions> <execution> <goals> <goal>clean</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <forkMode>pertest</forkMode> </configuration> </plugin> </plugins> <resources> <resource> <directory>${basedir}</directory> <targetPath>META-INF</targetPath> <includes> <include>LICENSE</include> <include>NOTICE</include> </includes> </resource> <resource> <directory>${project.build.sourceDirectory}</directory> <excludes> <exclude>**/*.java</exclude> </excludes> </resource> </resources> <testResources> <testResource> <directory>${project.build.testSourceDirectory}</directory> <excludes> <exclude>**/*.java</exclude> </excludes> </testResource> </testResources> </build> <reporting> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <configuration> <formats> <format>html</format> <format>xml</format> </formats> </configuration> </plugin> </plugins> </reporting> </project>