Advertisement
Guest User

Untitled

a guest
Feb 20th, 2020
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.82 KB | None | 0 0
  1. dependencies {
  2. def tomcatVersion = '8.0.42'
  3.  
  4. providedCompile "javax.servlet:servlet-api:2.5",
  5. "javax.servlet.jsp:jsp-api:2.1"
  6.  
  7. // Dependencies are libraries needed to build, but should not be included in the B2 WAR.
  8. // You should NEVER include Learn JARs (other than webapis) in your B2.
  9. providedCompile("blackboard.platform:bb-taglibs:$project.ext.learnVersion") { transitive = false }
  10. providedCompile("blackboard.platform:bb-platform:$project.ext.learnVersion") { transitive = false }
  11. providedCompile('org.jdom:jdom:1.1.3') { transitive = false }
  12. providedCompile('net.sf.json-lib:json-lib:2.4:jdk15') { transitive = true }
  13.  
  14. compile group: 'commons-logging', name: 'commons-logging', version: '1.1.1'
  15. compile group: 'org.apache.httpcomponents', name: 'httpmime', version: '4.2.2'
  16. compile group: 'org.apache.httpcomponents', name: 'httpclient-cache', version: '4.2.2'
  17. compile group: 'joda-time', name: 'joda-time', version: '2.1'
  18. compile group: 'org.simpleframework', name: 'simple-xml', version: '2.7'
  19. compile group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.2'
  20. compile group: 'commons-httpclient', name: 'commons-httpclient', version: '3.1'
  21. compile group: '', name: 'b2context', version: '1.3.00'
  22.  
  23. buildUtils "org.oscelot:b2deploy-task:0.1.0"
  24.  
  25. testCompile 'org.testng:testng:6.8.7'
  26.  
  27. tomcat "org.apache.tomcat.embed:tomcat-embed-core:${tomcatVersion}",
  28. "org.apache.tomcat.embed:tomcat-embed-logging-juli:${tomcatVersion}",
  29. "org.apache.tomcat.embed:tomcat-embed-jasper:${tomcatVersion}",
  30. "blackboard.platform:bb-taglibs:$project.ext.learnVersion",
  31. "blackboard.platform:bb-platform:$project.ext.learnVersion",
  32. "javax.servlet:jstl:1.2"
  33. "b2context-1.3.00"
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement