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

@@ -0,0 +1,21 @@
<settings>
<!-- Profile defining the properties required for a MyBatis build -->
<profiles>
<profile>
<id>guacamole-mybatis</id>
<properties>
<guacamole.database.catalog>SCHEMA</guacamole.database.catalog>
<guacamole.database.schema>DATABASE</guacamole.database.schema>
<guacamole.database.user>USER</guacamole.database.user>
<guacamole.database.password>PASS</guacamole.database.password>
</properties>
</profile>
</profiles>
<!-- Activate by default -->
<activeProfiles>
<activeProfile>guacamole-mybatis</activeProfile>
</activeProfiles>
</settings>