File tree Expand file tree Collapse file tree 2 files changed +34
-1
lines changed Expand file tree Collapse file tree 2 files changed +34
-1
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,39 @@ mybatis-freemarker is a plugin that helps creating big dynamic SQL queries. You
16
16
17
17
If you are not familiar with FreeMarker syntax, you can view [ Template Language Reference] ( http://freemarker.org/docs/ref.html )
18
18
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
+
19
52
## Install from sources
20
53
21
54
- Checkout the source code
Original file line number Diff line number Diff line change 6
6
7
7
<groupId >org.mybatis.scripting</groupId >
8
8
<artifactId >mybatis-freemarker</artifactId >
9
- <version >1.0-SNAPSHOT </version >
9
+ <version >1.0</version >
10
10
<packaging >jar</packaging >
11
11
12
12
<name >MyBatis FreeMarker</name >
You can’t perform that action at this time.
0 commit comments