build.gradle 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. version = '1.0'
  2. apply plugin: 'java'
  3. apply plugin: 'idea'
  4. apply plugin: 'war'
  5. repositories {
  6. mavenLocal()
  7. maven {url "http://maven.aliyun.com/nexus/content/groups/public/"}
  8. }
  9. dependencies {
  10. compile 'org.apache.velocity:velocity:1.7'
  11. compile 'org.codehaus.jackson:jackson-core-asl:1.9.9'
  12. compile 'org.codehaus.jackson:jackson-mapper-asl:1.9.9'
  13. compile 'net.sourceforge.jexcelapi:jxl:2.6.3'
  14. compile 'joda-time:joda-time:2.3'
  15. compile 'com.thoughtworks.xstream:xstream:1.4.8'
  16. compile 'commons-dbutils:commons-dbutils:1.6'
  17. compile 'commons-net:commons-net:3.3'
  18. compile 'org.jboss.netty:netty:3.1.0.GA'
  19. compile('jaxen:jaxen:1.1.6') {
  20. transitive = false
  21. }
  22. compile 'org.apache.cxf:cxf-rt-frontend-jaxws:3.1.11'
  23. compile 'org.apache.cxf:cxf-rt-transports-http:3.1.11'
  24. compile 'taglibs:standard:1.1.2'
  25. compile 'cglib:cglib:3.2.0'
  26. compile 'commons-jxpath:commons-jxpath:1.3'
  27. compile 'com.fasterxml.jackson.core:jackson-annotations:2.2.3'
  28. compile 'net.coobird:thumbnailator:0.4.8'
  29. compile 'org.apache.ws.security:wss4j:1.6.4'
  30. compile 'commons-httpclient:commons-httpclient:3.1-rc1'
  31. compile 'com.lowagie:itext:4.2.1'
  32. compile 'commons-beanutils:commons-beanutils-core:1.8.3'
  33. compile 'com.ibm.icu:icu4j:56.1'
  34. compile 'org.beanshell:bsh:2.0b5'
  35. compile 'avalon-framework:avalon-framework:4.1.5-RC2'
  36. compile 'xml-resolver:xml-resolver:1.2'
  37. compile 'org.codehaus.groovy:groovy-all:2.4.5'
  38. compile 'net.sourceforge.pjl-comp-filter:pjl-comp-filter:1.7'
  39. compile 'org.bouncycastle:bcprov-jdk16:1.46'
  40. compile 'javax.servlet:jstl:1.1.2'
  41. compile 'opensymphony:oscore:2.2.6'
  42. compile 'org.apache.httpcomponents:httpclient:4.3.5'
  43. compile 'org.apache.xmlgraphics:batik-bridge:1.7'
  44. compile 'org.apache.xmlgraphics:batik-svggen:1.7'
  45. compile('org.springframework.kafka:spring-kafka:1.1.1.RELEASE'){
  46. transitive = false
  47. }
  48. compile 'org.apache.kafka:kafka_2.10:0.10.0.0'
  49. compile 'org.apache.kafka:kafka-clients:0.10.0.1'
  50. compile('org.codehaus.xfire:xfire-core:1.2.5'){
  51. transitive = false
  52. }
  53. compile 'org.jdom:jdom:1.1.3'
  54. compile('jcifs:jcifs:1.3.17'){
  55. transitive = false
  56. }
  57. compile 'com.alibaba:fastjson:1.2.23'
  58. compile 'com.dangdang:elastic-job-lite-core:2.1.1'
  59. compile ('com.dangdang:elastic-job-lite-spring:2.1.1'){
  60. transitive = false
  61. }
  62. compile 'org.apache.axis:axis:1.4'
  63. compile 'javax.xml.rpc:javax.xml.rpc-api:1.1'
  64. compile 'org.apache.commons:commons-io:1.3.2'
  65. compile 'org.apache.commons:commons-io:1.3.2'
  66. compile 'commons-discovery:commons-discovery:0.5'
  67. compile 'org.apache.axis2:axis2:1.7.8'
  68. compile 'org.apache.ws.commons.axiom:axiom-api:1.2.13'
  69. compile 'org.apache.ws.commons.axiom:axiom-impl:1.2.13'
  70. compile 'org.apache.axis2:axis2-transport-local:1.7.8'
  71. compile 'org.apache.axis2:axis2-transport-http:1.7.8'
  72. compile 'org.apache.axis2:axis2-adb:1.7.8'
  73. compile 'org.zenframework.z8.dependencies.commons:mail-1.4.7:2.0'
  74. providedCompile "javax.servlet:javax.servlet-api:3.1.0"
  75. providedCompile "javax.servlet.jsp:jsp-api:2.2.1-b03"
  76. compile (
  77. project(':model'),
  78. project(':common'),
  79. project(':interface'),
  80. project(':business')
  81. )
  82. compile fileTree(dir: '../lib', include: '*.jar')
  83. }
  84. configurations.compile.resolutionStrategy{
  85. failOnVersionConflict()
  86. force 'commons-collections:commons-collections:3.2'
  87. force 'commons-lang:commons-lang:2.5'
  88. force 'commons-beanutils:commons-beanutils:1.8.3'
  89. force 'commons-beanutils:commons-beanutils-core:1.8.3'
  90. force 'commons-logging:commons-logging:1.1.3'
  91. force 'commons-codec:commons-codec:1.5'
  92. force 'commons-digester:commons-digester:2.1'
  93. force 'commons-io:commons-io:2.2'
  94. force 'org.apache.commons:commons-lang3:3.4'
  95. force 'org.apache.kafka:kafka-clients:0.10.0.1'
  96. force 'dom4j:dom4j:1.6.1'
  97. force 'org.slf4j:slf4j-api:1.7.9'
  98. force 'org.hibernate:hibernate-core:3.6.9.Final'
  99. force 'log4j:log4j:1.2.17'
  100. force 'xml-apis:xml-apis:2.0.2'
  101. force 'com.fasterxml.jackson.core:jackson-annotations:2.2.3'
  102. force 'xerces:xercesImpl:2.8.1'
  103. force 'joda-time:joda-time:2.3'
  104. force 'org.apache.santuario:xmlsec:1.4.6'
  105. force 'com.lowagie:itext:4.2.1'
  106. force 'commons-collections:commons-collections:3.2'
  107. force 'org.springframework:spring-context:4.3.3.RELEASE'
  108. force 'org.springframework:spring-context-support:3.2.13.RELEASE'
  109. force 'org.springframework:spring-aop:4.3.3.RELEASE'
  110. force 'org.springframework:spring-expression:4.3.3.RELEASE'
  111. force 'org.springframework:spring-test:4.3.3.RELEASE'
  112. force 'org.springframework:spring-beans:4.3.3.RELEASE'
  113. force 'org.springframework:spring-core:4.3.3.RELEASE'
  114. force 'org.springframework:spring-web:3.2.13.RELEASE'
  115. force 'org.springframework:spring-webmvc:3.2.13.RELEASE'
  116. force 'org.springframework:spring-orm:3.2.13.RELEASE'
  117. force 'org.springframework:spring-tx:3.2.13.RELEASE'
  118. force 'org.springframework:spring-jdbc:3.2.13.RELEASE'
  119. force 'org.slf4j:slf4j-log4j12:1.7.21'
  120. force 'org.codehaus.jackson:jackson-mapper-asl:1.9.9'
  121. force 'commons-pool:commons-pool:1.3'
  122. force 'org.codehaus.woodstox:wstx-asl:3.2.9'
  123. force 'commons-httpclient:commons-httpclient:3.1-rc1'
  124. force 'org.apache.geronimo.specs:geronimo-activation_1.1_spec:1.1'
  125. force "jaxen:jaxen:1.1.6"
  126. force "org.apache.httpcomponents:httpcore:4.3.2"
  127. // force "org.apache.ws.commons.axiom:axiom-api:1.2.8"
  128. // force "org.apache.ws.commons.axiom:axiom-impl:1.2.8"
  129. force 'org.apache.ws.commons.axiom:axiom-api:1.2.13'
  130. force 'org.apache.ws.commons.axiom:axiom-impl:1.2.13'
  131. force "org.apache.ws.commons.schema:XmlSchema:1.4.3"
  132. force 'org.apache.httpcomponents:httpclient:4.3.6'
  133. force 'com.fasterxml.jackson.core:jackson-databind:2.7.6'
  134. force "org.apache.ant:ant:1.9.4"
  135. force "xalan:xalan:2.7.0"
  136. force "org.ow2.asm:asm:5.0.4"
  137. force 'com.google.guava:guava:18.0'
  138. force 'com.google.code.gson:gson:2.7'
  139. force 'wsdl4j:wsdl4j:1.6.3'
  140. }
  141. war {
  142. archiveName 'BH_EDI.war'
  143. }