build.gradle 1.7 KB

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