Ticket #269: Leverage Maven's source generation features to generate MyBatis mappings.

This commit is contained in:
Michael Jumper
2013-02-28 20:00:31 -08:00
parent 06b1d4df18
commit f8fec18909
35 changed files with 134 additions and 6700 deletions

View File

@@ -48,6 +48,32 @@
</executions>
</plugin>
<!-- MyBatis Generator plugin -->
<plugin>
<groupId>org.mybatis.generator</groupId>
<artifactId>mybatis-generator-maven-plugin</artifactId>
<version>1.3.0</version>
<executions>
<execution>
<id>Generate MyBatis Artifacts</id>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
<!-- MySQL Connector -->
<dependencies>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.23</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>