Skip to content

Commit

Permalink
Merge pull request #393 from terasolunaorg/issues/279_add-dependencyM…
Browse files Browse the repository at this point in the history
…anagement-for-mybatis3

Add the dependency management of MyBatis3 on parent pom file #279
  • Loading branch information
making committed Nov 12, 2015
2 parents 4ec44ed + 1c9fece commit fb911d6
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 @@ -360,13 +360,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 fb911d6

Please sign in to comment.