Advertisement
Guest User

Untitled

a guest
Jun 27th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. configurations {
  2. toCopy
  3. implementation {
  4. extendsFrom toCopy
  5. }
  6. }
  7.  
  8. dependencies {
  9. toCopy 'mysql:mysql-connector-java'
  10. }
  11.  
  12. task copyToLib(type: Copy) {
  13. from configurations.toCopy
  14. into 'lib'
  15. rename '(.*)', 'mysql-connector-java.jar'
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement