build.gradle 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. fopDeps
  24. runtime 'net.sf.xslthl:xslthl:2.0.1',
  25. 'net.sf.docbook:docbook-xsl:1.75.2:ns-resources@zip'
  26. }
  27. // GAE
  28. dependencies {
  29. compile 'com.google.appengine:appengine-tools-sdk:1.4.2'
  30. }
  31. dependencies{
  32. compile "emma:emma:2.0.5312"
  33. }
  34. // Bundlor
  35. dependencies {
  36. compile 'com.springsource.bundlor:com.springsource.bundlor:1.0.0.RELEASE',
  37. 'com.springsource.bundlor:com.springsource.bundlor.blint:1.0.0.RELEASE'
  38. }
  39. task ide(type: Copy) {
  40. from configurations.runtime
  41. into 'ide'
  42. }
  43. apply plugin: 'idea'
  44. ideaModule {
  45. excludeDirs += file('.gradle')
  46. }