Advertisement
Guest User

Untitled

a guest
Mar 15th, 2017
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. <plugin>
  2. <groupId>org.mybatis.generator</groupId>
  3. <artifactId>mybatis-generator-maven-plugin</artifactId>
  4. <version>${mybatis-generator.version}</version>
  5. <executions>
  6. <execution>
  7. <id>Generate MyBatis Artifacts</id>
  8. <goals>
  9. <goal>generate</goal>
  10. </goals>
  11. <phase>none</phase>
  12. <configuration>
  13. <configurationFile>${basedir}/src/main/resources/config/mysqlGeneratorConfig.xml</configurationFile>
  14. <overwrite>true</overwrite>
  15. <jdbcDriver>com.mysql.jdbc.Driver</jdbcDriver>
  16. <jdbcURL>jdbc:mysql://localhost:3306/sakira</jdbcURL>
  17. <jdbcUserId>root</jdbcUserId>
  18. <jdbcPassword>root.local</jdbcPassword>
  19. <verbose>true</verbose>
  20. </configuration>
  21. </execution>
  22. </executions>
  23. </plugin>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement