build.gradle 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. apply id: 'groovy'
  2. repositories {
  3. mavenRepo name:'localRepo', urls: "file://" + System.properties['user.home'] + "/.m2/repository"
  4. mavenCentral()
  5. mavenRepo name:'Shibboleth Repo', urls:'http://shibboleth.internet2.edu/downloads/maven2'
  6. }
  7. dependencies {
  8. def fopDeps = [ 'org.apache.xmlgraphics:fop:0.95-1@jar',
  9. 'org.apache.xmlgraphics:xmlgraphics-commons:1.3',
  10. 'org.apache.xmlgraphics:batik-bridge:1.7@jar',
  11. 'org.apache.xmlgraphics:batik-util:1.7@jar',
  12. 'org.apache.xmlgraphics:batik-css:1.7@jar',
  13. 'org.apache.xmlgraphics:batik-dom:1.7',
  14. 'org.apache.xmlgraphics:batik-svg-dom:1.7@jar',
  15. 'org.apache.avalon.framework:avalon-framework-api:4.3.1']
  16. groovy localGroovy()
  17. compile gradleApi(),
  18. 'org.apache.xerces:resolver:2.9.1',
  19. 'saxon:saxon:6.5.3',
  20. 'org.apache.xerces:xercesImpl:2.9.1',
  21. fopDeps
  22. runtime 'net.sf.xslthl:xslthl:2.0.1',
  23. 'net.sf.docbook:docbook-xsl:1.75.2:resources@zip'
  24. }
  25. task ide(type: Copy) {
  26. from configurations.runtime
  27. into 'ide'
  28. }