Advertisement
Guest User

Untitled

a guest
Mar 8th, 2016
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. **build.xml:116: Problem: failed to create task or type etl**
  2.  
  3. Cause: The name is undefined.
  4. Action: Check the spelling.
  5. Action: Check that any custom tasks/types have been declared.
  6. Action: Check that any <presetdef>/<macrodef> declarations have taken place.
  7.  
  8. **build.xml**
  9. <target name="install-database">
  10. <etl file="src/main/database/mysql/_database.xml" />
  11. </target>
  12.  
  13. **_database.xml**
  14.  
  15. <etl>
  16. <connection id="database.init" driver="mysql" classpath="${classpath}"
  17. url="jdbc:mysql://${database.url}" user="${database.username}"
  18. password="${database.password}" />
  19. <connection id="database" driver="mysql" classpath="${classpath}"
  20. </etl>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement