Skip to content

Commit

Permalink
1.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
elw00d committed Mar 21, 2015
1 parent 9b80bb4 commit 749dbf8
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 1 deletion.
33 changes: 33 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,39 @@ mybatis-freemarker is a plugin that helps creating big dynamic SQL queries. You

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

## Install

mybatis-freemarker is available in [jcenter](https://bintray.com/bintray/jcenter) maven repository. So, if you are using maven, you can add this:

```xml
<repositories>
<repository>
<id>jcenter</id>
<url>http://jcenter.bintray.com</url>
</repository>
</repositories>

<dependencies>
<dependency>
<groupId>org.mybatis.scripting</groupId>
<artifactId>mybatis-freemarker</artifactId>
<version>1.0</version>
</dependency>
</dependencies>
```

If you are using gradle, you can use this snippet:

```groovy
repositories {
jcenter()
}
dependencies {
compile("org.mybatis.scripting:mybatis-freemarker:1.0")
}
```

## Install from sources

- Checkout the source code
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>org.mybatis.scripting</groupId>
<artifactId>mybatis-freemarker</artifactId>
<version>1.0-SNAPSHOT</version>
<version>1.0</version>
<packaging>jar</packaging>

<name>MyBatis FreeMarker</name>
Expand Down

0 comments on commit 749dbf8

Please sign in to comment.