build.gradle 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. apply plugin: 'groovy'
  2. repositories {
  3. mavenCentral()
  4. maven {
  5. name = 'SpringSource Enterprise Release'
  6. url = 'http://repository.springsource.com/maven/bundles/release'
  7. }
  8. maven {
  9. name = 'SpringSource Enterprise External'
  10. url = 'http://repository.springsource.com/maven/bundles/external'
  11. }
  12. }
  13. // Docbook Plugin
  14. dependencies {
  15. def fopDeps = [ 'org.apache.xmlgraphics:fop:0.95-1@jar',
  16. 'org.apache.xmlgraphics:xmlgraphics-commons:1.3',
  17. 'org.apache.xmlgraphics:batik-bridge:1.7@jar',
  18. 'org.apache.xmlgraphics:batik-util:1.7@jar',
  19. 'org.apache.xmlgraphics:batik-css:1.7@jar',
  20. 'org.apache.xmlgraphics:batik-dom:1.7',
  21. 'org.apache.xmlgraphics:batik-svg-dom:1.7@jar',
  22. 'org.apache.avalon.framework:avalon-framework-api:4.3.1']
  23. groovy localGroovy()
  24. compile gradleApi(),
  25. 'xml-resolver:xml-resolver:1.2',
  26. 'xerces:xercesImpl:2.9.1',
  27. 'saxon:saxon:6.5.3',
  28. 'net.java.dev.jets3t:jets3t:0.6.1',
  29. fopDeps
  30. runtime 'net.sf.xslthl:xslthl:2.0.1',
  31. 'net.sf.docbook:docbook-xsl:1.75.2:ns-resources@zip'
  32. }
  33. // GAE
  34. dependencies {
  35. compile 'com.google.appengine:appengine-tools-sdk:1.4.2'
  36. }
  37. dependencies{
  38. compile "emma:emma:2.0.5312"
  39. }
  40. // Bundlor
  41. dependencies {
  42. compile 'com.springsource.bundlor:com.springsource.bundlor:1.0.0.RELEASE',
  43. 'com.springsource.bundlor:com.springsource.bundlor.blint:1.0.0.RELEASE'
  44. }
  45. task ide(type: Copy) {
  46. from configurations.runtime
  47. into 'ide'
  48. }