mybatis2
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis2</artifactId> <version>2.5.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright 2004-2022 the original author or authors. 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 https://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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.mybatis</groupId> <artifactId>mybatis-parent</artifactId> <version>36</version> <relativePath /> </parent> <groupId>org.mybatis</groupId> <artifactId>mybatis2</artifactId> <version>2.5.0</version> <packaging>jar</packaging> <name>mybatis2</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/</url> <inceptionYear>2004</inceptionYear> <scm> <url>http://github.com/mybatis/mybatis-2</url> <connection>scm:git:ssh://github.com/mybatis/mybatis-2.git</connection> <developerConnection>scm:git:ssh://git@github.com/mybatis/mybatis-2.git</developerConnection> <tag>mybatis2-2.5.0</tag> </scm> <issueManagement> <system>GitHub Issue Management</system> <url>https://github.com/mybatis/mybatis-2/issues</url> </issueManagement> <ciManagement> <system>GitHub Actions</system> <url>https://github.com/mybatis/mybatis-2/actions</url> </ciManagement> <distributionManagement> <site> <id>gh-pages</id> <name>Mybatis GitHub Pages</name> <url>git:ssh://git@github.com/mybatis/mybatis-2.git?gh-pages#</url> </site> </distributionManagement> <properties> <clirr.comparisonVersion>2.3.7</clirr.comparisonVersion> <java.version>8</java.version> <java.release.version>8</java.release.version> <java.test.version>8</java.test.version> <java.test.release.version>8</java.test.release.version> <module.name>org.mybatis.mybatis2</module.name> <osgi.export>org.ibatis.*;version=${project.version};-noimport:=true</osgi.export> <osgi.import>*;resolution:=optional</osgi.import> <osgi.dynamicImport>*</osgi.dynamicImport> <!-- Reproducible Builds --> <project.build.outputTimestamp>1670182658</project.build.outputTimestamp> </properties> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>2.0.5</version> <optional>true</optional> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>2.0.5</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> <version>2.0.5</version> <optional>true</optional> </dependency> <dependency> <groupId>cglib</groupId> <artifactId>cglib</artifactId> <version>3.3.0</version> <optional>true</optional> </dependency> <dependency> <groupId>commons-dbcp</groupId> <artifactId>commons-dbcp</artifactId> <version>1.4</version> <scope>provided</scope> </dependency> <dependency> <groupId>jakarta.transaction</groupId> <artifactId>jakarta.transaction-api</artifactId> <version>1.3.3</version> <scope>provided</scope> </dependency> <dependency> <groupId>opensymphony</groupId> <artifactId>oscache</artifactId> <version>2.4.1</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>jms</artifactId> <groupId>javax.jms</groupId> </exclusion> </exclusions> </dependency> <!-- Test dependencies --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>5.9.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hsqldb</groupId> <artifactId>hsqldb</artifactId> <version>2.7.1</version> <classifier>jdk8</classifier> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.derby</groupId> <artifactId>derby</artifactId> <version>10.15.2.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.derby</groupId> <artifactId>derbyshared</artifactId> <version>10.15.2.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.derby</groupId> <artifactId>derbyoptionaltools</artifactId> <version>10.15.2.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jmock</groupId> <artifactId>jmock-junit5</artifactId> <version>2.12.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jmock</groupId> <artifactId>jmock-legacy</artifactId> <version>2.12.0</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <configuration> <descriptors> <descriptor>bundle.xml</descriptor> </descriptors> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <systemProperties> <property> <name>derby.stream.error.file</name> <value>${project.build.directory}/derby.log</value> </property> <property> <name>derby.system.home</name> <value>${project.build.directory}/ibderby</value> </property> </systemProperties> </configuration> </plugin> </plugins> </build> </project>