My favorites | Sign in
Project Home Downloads Wiki Issues Source
Search
for
DocMavenTutorial  
Updated Apr 16, 2012 by haraw...@gmail.com

MyBatis & Maven

The following is the Maven group, artifact and version for MyBatis.

  <dependency>
    <groupId>org.mybatis</groupId>
    <artifactId>mybatis</artifactId>
    <version>3.1.1</version>
  </dependency>

If you are looking to try the latest and greatest you can use our snapshot repository. Just add the following to your project's pom.xml or to a profile defined in your settings.xml.

<repository>
    <id>mybatis-snapshot</id>
    <name>MyBatis Snapshot Repository</name>
    <url>https://oss.sonatype.org/content/repositories/snapshots</url>
</repository>
Comment by axel.doe...@gmail.com, Mar 8, 2012

When I want to build mybatis from trunk, 'mvn' says that it does not find version 14-SNAPSHOT. If I manually change this to 12 it works, but what is the proper way of solving this?


Sign in to add a comment
Powered by Google Project Hosting