Skip to content

Commit 749dbf8

Browse files
committed
1.0 release.
1 parent 9b80bb4 commit 749dbf8

File tree

2 files changed

+34
-1
lines changed

2 files changed

+34
-1
lines changed

README.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,39 @@ mybatis-freemarker is a plugin that helps creating big dynamic SQL queries. You
1616

1717
If you are not familiar with FreeMarker syntax, you can view [Template Language Reference](http://freemarker.org/docs/ref.html)
1818

19+
## Install
20+
21+
mybatis-freemarker is available in [jcenter](https://bintray.com/bintray/jcenter) maven repository. So, if you are using maven, you can add this:
22+
23+
```xml
24+
<repositories>
25+
<repository>
26+
<id>jcenter</id>
27+
<url>http://jcenter.bintray.com</url>
28+
</repository>
29+
</repositories>
30+
31+
<dependencies>
32+
<dependency>
33+
<groupId>org.mybatis.scripting</groupId>
34+
<artifactId>mybatis-freemarker</artifactId>
35+
<version>1.0</version>
36+
</dependency>
37+
</dependencies>
38+
```
39+
40+
If you are using gradle, you can use this snippet:
41+
42+
```groovy
43+
repositories {
44+
jcenter()
45+
}
46+
47+
dependencies {
48+
compile("org.mybatis.scripting:mybatis-freemarker:1.0")
49+
}
50+
```
51+
1952
## Install from sources
2053

2154
- Checkout the source code

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>org.mybatis.scripting</groupId>
88
<artifactId>mybatis-freemarker</artifactId>
9-
<version>1.0-SNAPSHOT</version>
9+
<version>1.0</version>
1010
<packaging>jar</packaging>
1111

1212
<name>MyBatis FreeMarker</name>

0 commit comments

Comments
 (0)