build.gradle 720 B

12345678910111213141516171819202122232425
  1. version = '1.0'
  2. apply plugin: 'java'
  3. apply plugin: 'idea'
  4. repositories {
  5. mavenLocal()
  6. maven {url "http://maven.aliyun.com/nexus/content/groups/public/"}
  7. }
  8. dependencies {
  9. compile 'commons-collections:commons-collections:3.2'
  10. compile 'org.hibernate:hibernate-core:3.6.9.Final'
  11. compile 'javax.persistence:persistence-api:1.0'
  12. compile 'org.apache.commons:commons-lang3:3.4'
  13. compile 'net.sf.json-lib:json-lib:2.4:jdk15'
  14. compile('org.springframework.data:spring-data-commons:1.12.6.RELEASE'){
  15. transitive = false
  16. }
  17. compile('org.springframework.data:spring-data-mongodb:1.9.6.RELEASE'){
  18. transitive = false
  19. }
  20. compile fileTree(dir: '../lib', include: '*.jar')
  21. }