build.gradle 1.6 KB

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