## Dependency Information
### Apache Maven
```
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>3.4.0-SNAPSHOT</version>
</dependency>
```
### Apache Buildr
```
'org.mybatis:mybatis:jar:3.4.0-SNAPSHOT'
```
### Apache Ivy
```
<dependency org="org.mybatis" name="mybatis" rev="3.4.0-SNAPSHOT">
<artifact name="mybatis" type="jar" />
</dependency>
```
### Groovy Grape
```
@Grapes(
@Grab(group='org.mybatis', module='mybatis', version='3.4.0-SNAPSHOT')
)
```
### Grails
```
compile 'org.mybatis:mybatis:3.4.0-SNAPSHOT'
```
### Leiningen
```
[org.mybatis/mybatis "3.4.0-SNAPSHOT"]
```
### SBT
```
libraryDependencies += "org.mybatis" % "mybatis" % "3.4.0-SNAPSHOT"
```