build.gradle 1000 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. if (!hasProperty('mainClass')) {
  2. ext.mainClass = ''
  3. }
  4. dependencies {
  5. compile project(':jme3-core')
  6. compile 'com.github.nifty-gui:nifty:1.4.2'
  7. compile 'com.github.nifty-gui:nifty-default-controls:1.4.2'
  8. compile 'com.github.nifty-gui:nifty-style-black:1.4.2'
  9. }
  10. ext.pomConfig = {
  11. name POM_NAME
  12. description POM_DESCRIPTION
  13. url POM_URL
  14. inceptionYear POM_INCEPTION_YEAR
  15. scm {
  16. url POM_SCM_URL
  17. connection POM_SCM_CONNECTION
  18. developerConnection POM_SCM_DEVELOPER_CONNECTION
  19. }
  20. licenses {
  21. license {
  22. name POM_LICENSE_NAME
  23. url POM_LICENSE_URL
  24. distribution POM_LICENSE_DISTRIBUTION
  25. }
  26. }
  27. developers {
  28. developer {
  29. name 'jMonkeyEngine Team'
  30. id 'jMonkeyEngine'
  31. }
  32. }
  33. repositories {
  34. repository {
  35. id "nifty-maven-repo.sourceforge.net"
  36. url "http://nifty-gui.sourceforge.net/nifty-maven-repo"
  37. }
  38. }
  39. }