build.gradle 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. apply plugin: 'java'
  2. apply plugin: 'idea'
  3. apply plugin: 'org.springframework.boot'
  4. apply plugin: "io.spring.dependency-management"
  5. group 'com.hrsoft.edi'
  6. version '1.0'
  7. sourceCompatibility = 1.8
  8. buildscript {
  9. ext {
  10. springBootVersion = '2.1.6.RELEASE'
  11. }
  12. repositories {
  13. maven {url "http://maven.aliyun.com/nexus/content/groups/public/"}
  14. }
  15. dependencies {
  16. classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
  17. }
  18. }
  19. repositories {
  20. mavenLocal()
  21. maven { url "http://maven.aliyun.com/nexus/content/groups/public/" }
  22. }
  23. dependencies {
  24. compile('org.springframework.boot:spring-boot-starter')
  25. testCompile('org.springframework.boot:spring-boot-starter-test')
  26. compile("org.springframework.boot:spring-boot-starter-web")
  27. compile("org.springframework.boot:spring-boot-starter-aop")
  28. compile files('lib/taobao-sdk-java-auto_1622085135208-20210527.jar')
  29. compile 'com.alibaba:easyexcel:1.1.2-beta5'
  30. compile group: 'javax.servlet', name: 'javax.servlet-api', version: '4.0.1'
  31. compile 'cn.hutool:hutool-all:4.5.10'
  32. compile 'cn.afterturn:easypoi-spring-boot-starter:4.1.0'
  33. compileOnly 'org.projectlombok:lombok:1.18.8'
  34. compile 'cn.afterturn:easypoi-base:4.1.0'
  35. compile 'cn.afterturn:easypoi-annotation:4.1.0'
  36. compile 'commons-logging:commons-logging:1.1.3'
  37. compile group: 'log4j', name: 'log4j', version:'1.2.17'
  38. compile group: 'org.apache.commons', name: 'commons-lang3', version:'3.4'
  39. compile group: 'com.alibaba', name: 'fastjson', version: '1.2.51'
  40. }