You can download mapper-3.3.6.jar in this page.
The MIT License (MIT)
mapper-3.3.6.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/tk.mybatis/mapper/pom.properties META-INF/maven/tk.mybatis/mapper/pom.xml tk.mybatis.mapper.annotation.ColumnType.class tk.mybatis.mapper.annotation.NameStyle.class tk.mybatis.mapper.code.IdentityDialect.class tk.mybatis.mapper.code.Style.class tk.mybatis.mapper.common.BaseMapper.class tk.mybatis.mapper.common.ConditionMapper.class tk.mybatis.mapper.common.ExampleMapper.class tk.mybatis.mapper.common.Mapper.class tk.mybatis.mapper.common.Marker.class tk.mybatis.mapper.common.MySqlMapper.class tk.mybatis.mapper.common.RowBoundsMapper.class tk.mybatis.mapper.common.SqlServerMapper.class tk.mybatis.mapper.common.base.BaseDeleteMapper.class tk.mybatis.mapper.common.base.BaseInsertMapper.class tk.mybatis.mapper.common.base.BaseSelectMapper.class tk.mybatis.mapper.common.base.BaseUpdateMapper.class tk.mybatis.mapper.common.base.delete.DeleteByPrimaryKeyMapper.class tk.mybatis.mapper.common.base.delete.DeleteMapper.class tk.mybatis.mapper.common.base.insert.InsertMapper.class tk.mybatis.mapper.common.base.insert.InsertSelectiveMapper.class tk.mybatis.mapper.common.base.select.SelectAllMapper.class tk.mybatis.mapper.common.base.select.SelectByPrimaryKeyMapper.class tk.mybatis.mapper.common.base.select.SelectCountMapper.class tk.mybatis.mapper.common.base.select.SelectMapper.class tk.mybatis.mapper.common.base.select.SelectOneMapper.class tk.mybatis.mapper.common.base.update.UpdateByPrimaryKeyMapper.class tk.mybatis.mapper.common.base.update.UpdateByPrimaryKeySelectiveMapper.class tk.mybatis.mapper.common.condition.DeleteByConditionMapper.class tk.mybatis.mapper.common.condition.SelectByConditionMapper.class tk.mybatis.mapper.common.condition.SelectCountByConditionMapper.class tk.mybatis.mapper.common.condition.UpdateByConditionMapper.class tk.mybatis.mapper.common.condition.UpdateByConditionSelectiveMapper.class tk.mybatis.mapper.common.example.DeleteByExampleMapper.class tk.mybatis.mapper.common.example.SelectByExampleMapper.class tk.mybatis.mapper.common.example.SelectCountByExampleMapper.class tk.mybatis.mapper.common.example.UpdateByExampleMapper.class tk.mybatis.mapper.common.example.UpdateByExampleSelectiveMapper.class tk.mybatis.mapper.common.rowbounds.SelectByConditionRowBoundsMapper.class tk.mybatis.mapper.common.rowbounds.SelectByExampleRowBoundsMapper.class tk.mybatis.mapper.common.rowbounds.SelectRowBoundsMapper.class tk.mybatis.mapper.common.special.InsertListMapper.class tk.mybatis.mapper.common.special.InsertUseGeneratedKeysMapper.class tk.mybatis.mapper.common.sqlserver.InsertMapper.class tk.mybatis.mapper.common.sqlserver.InsertSelectiveMapper.class tk.mybatis.mapper.entity.Condition.class tk.mybatis.mapper.entity.Config.class tk.mybatis.mapper.entity.EntityColumn.class tk.mybatis.mapper.entity.EntityField.class tk.mybatis.mapper.entity.EntityTable.class tk.mybatis.mapper.entity.Example.class tk.mybatis.mapper.entity.IDynamicTableName.class tk.mybatis.mapper.generator.MapperCommentGenerator.class tk.mybatis.mapper.generator.MapperPlugin.class tk.mybatis.mapper.mapperhelper.EntityHelper.class tk.mybatis.mapper.mapperhelper.FieldHelper.class tk.mybatis.mapper.mapperhelper.MapperHelper.class tk.mybatis.mapper.mapperhelper.MapperTemplate.class tk.mybatis.mapper.mapperhelper.MultipleJdbc3KeyGenerator.class tk.mybatis.mapper.mapperhelper.SqlHelper.class tk.mybatis.mapper.provider.ConditionProvider.class tk.mybatis.mapper.provider.EmptyProvider.class tk.mybatis.mapper.provider.ExampleProvider.class tk.mybatis.mapper.provider.SpecialProvider.class tk.mybatis.mapper.provider.SqlServerProvider.class tk.mybatis.mapper.provider.base.BaseDeleteProvider.class tk.mybatis.mapper.provider.base.BaseInsertProvider.class tk.mybatis.mapper.provider.base.BaseSelectProvider.class tk.mybatis.mapper.provider.base.BaseUpdateProvider.class tk.mybatis.mapper.util.OGNL.class tk.mybatis.mapper.util.StringUtil.class tk.mybatis.spring.mapper.MapperFactoryBean.class tk.mybatis.spring.mapper.MapperScannerConfigurer.class
mapper-3.3.6.pom file content.
<!-- ~ The MIT License (MIT) ~ ~ Copyright (c) 2014-2016 abel533@gmail.com ~ ~ Permission is hereby granted, free of charge, to any person obtaining a copy ~ of this software and associated documentation files (the "Software"), to deal ~ in the Software without restriction, including without limitation the rights ~ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell ~ copies of the Software, and to permit persons to whom the Software is ~ furnished to do so, subject to the following conditions: ~ ~ The above copyright notice and this permission notice shall be included in ~ all copies or substantial portions of the Software. ~ ~ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR ~ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, ~ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE ~ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER ~ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, ~ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN ~ THE SOFTWARE. --> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>tk.mybatis</groupId> <artifactId>mapper</artifactId> <version>3.3.6</version> <packaging>jar</packaging> <name>mapper</name> <description>Mybatis??Mapper</description> <url>http://www.mybatis.tk</url> <licenses> <license> <name>The MIT License (MIT)</name> <url>https://github.com/abel533/Mapper/blob/master/LICENSE</url> </license> </licenses> <developers> <developer> <name>abel533</name> <email>abel533@gmail.com</email> </developer> </developers> <scm> <connection>scm:git@github.com:abel533/Mapper.git</connection> <developerConnection>scm:git@github.com:abel533/Mapper.git</developerConnection> <url>git@github.com:abel533/Mapper.git</url> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <spring.version>3.2.12.RELEASE</spring.version> </properties> <dependencies> <!--?????--> <dependency> <groupId>javax.persistence</groupId> <artifactId>persistence-api</artifactId> <version>1.0</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>${spring.version}</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-tx</artifactId> <version>${spring.version}</version> <scope>compile</scope> <optional>true</optional> </dependency> <!--???????--> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>3.3.1</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis-spring</artifactId> <version>1.2.4</version> <scope>compile</scope> <optional>true</optional> </dependency> <!-- Mybatis Generator --> <dependency> <groupId>org.mybatis.generator</groupId> <artifactId>mybatis-generator-core</artifactId> <version>1.3.2</version> <scope>compile</scope> <optional>true</optional> </dependency> <!--??--> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.17</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hsqldb</groupId> <artifactId>hsqldb</artifactId> <version>2.2.9</version> <scope>test</scope> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.29</version> <scope>test</scope> </dependency> <dependency> <groupId>net.sourceforge.jtds</groupId> <artifactId>jtds</artifactId> <version>1.3.1</version> <scope>test</scope> </dependency> </dependencies> <build> <testResources> <testResource> <directory>src/test/resources</directory> </testResource> <testResource> <directory>src/test/java</directory> </testResource> </testResources> </build> <profiles> <profile> <id>release</id> <build> <plugins> <!--Compiler--> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <!-- Source --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <!-- Javadoc --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <additionalparam>-Xdoclint:none</additionalparam> </configuration> </execution> </executions> </plugin> <!-- GPG mvn clean deploy -P release -Dgpg.passphrase=YourPassphase--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <distributionManagement> <snapshotRepository> <id>oss</id> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> <repository> <id>oss</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> </profile> </profiles> </project>
<dependency> <groupId>tk.mybatis</groupId> <artifactId>mapper</artifactId> <version>3.3.6</version> </dependency>
If you think the following mapper-3.3.6.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download mapper-3.3.6.jar file