inuishan

Untitled

Jun 22nd, 2016
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. version = '1.0'
  2. subprojects {
  3. repositories {
  4. mavenLocal()
  5. mavenCentral()
  6. maven {
  7. credentials {
  8. username = 'admin'
  9. password = 'admin123'
  10. }
  11. url "http://localhost:8081/nexus/content/repositories/thirdparty/"
  12. }
  13. flatDir {
  14. dirs 'jaltin/lib/pandorabots'
  15. }
  16. }
  17. apply plugin: 'idea'
  18. idea {
  19. module {
  20. downloadSources = true
  21. }
  22. }
  23. // apply plugin: 'war'
  24. tasks.withType(JavaCompile) {
  25. sourceCompatibility = "1.8"
  26. targetCompatibility = "1.8"
  27. options.compilerArgs << '-nowarn'
  28. options.encoding = 'UTF-8'
  29. }
  30. }
Add Comment
Please, Sign In to add comment