thufir

Untitled

Jul 4th, 2016
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. apply plugin: 'java'
  2.  
  3. sourceCompatibility = '1.8'
  4. [compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
  5.  
  6. // NetBeans will automatically add "run" and "debug" tasks relying on the
  7. // "mainClass" property. You may however define the property prior executing
  8. // tasks by passing a "-PmainClass=<QUALIFIED_CLASS_NAME>" argument.
  9. //
  10. // Note however, that you may define your own "run" and "debug" task if you
  11. // prefer. In this case NetBeans will not add these tasks but you may rely on
  12. // your own implementation.
  13. if (!hasProperty('mainClass')) {
  14. ext.mainClass = 'net.bounceme.mordor.twilio.Twilio'
  15. }
  16.  
  17. repositories {
  18. mavenCentral()
  19. // You may define additional repositories, or even remove "mavenCentral()".
  20. // Read more about repositories here:
  21. // http://www.gradle.org/docs/current/userguide/dependency_management.html#sec:repositories
  22. }
  23.  
  24. dependencies {
  25. // TODO: Add dependencies here ...
  26. // You can read more about how to add dependency here:
  27. // http://www.gradle.org/docs/current/userguide/dependency_management.html#sec:how_to_declare_your_dependencies
  28. //testCompile group: 'junit', name: 'junit', version: '4.10'
  29. compile 'com.twilio.sdk:twilio-java-sdk:4.4.5'
  30. }
Advertisement
Add Comment
Please, Sign In to add comment