多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
## 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" ```