You can download mapper-2.3.2.jar in this page.
The MIT License (MIT)
mapper-2.3.2.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/com.github.abel533/mapper/pom.properties META-INF/maven/com.github.abel533/mapper/pom.xml com.github.abel533.entity.BaseProvider.class com.github.abel533.entity.CommonProvider.class com.github.abel533.entity.EntityMapper.class com.github.abel533.entity.Example.class com.github.abel533.entity.mapper.CommonMapper.class com.github.abel533.generator.MapperCommentGenerator.class com.github.abel533.generator.MapperPlugin.class com.github.abel533.mapper.Mapper.class com.github.abel533.mapper.MapperProvider.class com.github.abel533.mapperhelper.EntityHelper.class com.github.abel533.mapperhelper.MapperHelper.class com.github.abel533.mapperhelper.MapperInterceptor.class com.github.abel533.mapperhelper.MapperTemplate.class com.github.abel533.sql.SqlMapper.class
mapper-2.3.2.pom file content.
<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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.github.abel533</groupId> <artifactId>mapper</artifactId> <version>2.3.2</version> <packaging>jar</packaging> <name>mapper</name> <description>Mybatis??Mapper</description> <url>https://github.com/abel533/Mapper</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> </properties> <dependencies> <!--?????--> <dependency> <groupId>javax.persistence</groupId> <artifactId>persistence-api</artifactId> <version>1.0</version> </dependency> <dependency> <groupId>commons-beanutils</groupId> <artifactId>commons-beanutils</artifactId> <version>1.9.2</version> </dependency> <!--???????--> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>3.2.6</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> </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> </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>com.github.abel533</groupId> <artifactId>mapper</artifactId> <version>2.3.2</version> </dependency>
If you think the following mapper-2.3.2.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download mapper-2.3.2.jar file