Skip to content

Commit

Permalink
Add the dependency management of MyBatis3 on parent pom file #279
Browse files Browse the repository at this point in the history
(cherry picked from commit 1c9fece)
  • Loading branch information
kazuki43zoo authored and btfurukawatkr committed Jan 7, 2016
1 parent e094ce4 commit c45772c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
7 changes: 3 additions & 4 deletions terasoluna-gfw-mybatis3/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,20 @@
</parent>
<artifactId>terasoluna-gfw-mybatis3</artifactId>
<name>TERASOLUNA Server Framework for Java (5.x) for MyBatis3</name>
<description>Maven dependency definition for using mybatis3</description>
<description>Maven dependency definition for using MyBatis3</description>
<url>http://terasoluna.org</url>

<dependencies>
<!-- == Begin Mybatis == -->
<!-- == Begin MyBatis == -->
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>${org.mybatis.version}</version>
</dependency>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis-spring</artifactId>
</dependency>
<!-- == End Mybatis == -->
<!-- == End MyBatis == -->
</dependencies>

</project>
9 changes: 7 additions & 2 deletions terasoluna-gfw-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -421,13 +421,18 @@
</dependency>
<!-- == End Spring IO Platform == -->

<!-- == Begin Mybatis == -->
<!-- == Begin MyBatis == -->
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>${org.mybatis.version}</version>
</dependency>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis-spring</artifactId>
<version>${org.mybatis.spring.version}</version>
</dependency>
<!-- == End Mybatis == -->
<!-- == End MyBatis == -->

<!-- == Begin Dozer== -->
<dependency>
Expand Down

0 comments on commit c45772c

Please sign in to comment.