123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- apply plugin: 'java'
- apply plugin: 'idea'
- apply plugin: 'org.springframework.boot'
- apply plugin: "io.spring.dependency-management"
- group 'com.hrsoft.edi'
- version '1.0'
- sourceCompatibility = 1.8
- buildscript {
- ext {
- springBootVersion = '2.1.6.RELEASE'
- }
- repositories {
- maven {url "http://maven.aliyun.com/nexus/content/groups/public/"}
- }
- dependencies {
- classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
- }
- }
- repositories {
- mavenLocal()
- maven { url "http://maven.aliyun.com/nexus/content/groups/public/" }
- }
- dependencies {
- compile('org.springframework.boot:spring-boot-starter')
- testCompile('org.springframework.boot:spring-boot-starter-test')
- compile("org.springframework.boot:spring-boot-starter-web")
- compile("org.springframework.boot:spring-boot-starter-aop")
- compile files('lib/taobao-sdk-java-auto_1622085135208-20210527.jar')
- compile 'com.alibaba:easyexcel:1.1.2-beta5'
- compile group: 'javax.servlet', name: 'javax.servlet-api', version: '4.0.1'
- compile 'cn.hutool:hutool-all:4.5.10'
- compile 'cn.afterturn:easypoi-spring-boot-starter:4.1.0'
- compileOnly 'org.projectlombok:lombok:1.18.8'
- compile 'cn.afterturn:easypoi-base:4.1.0'
- compile 'cn.afterturn:easypoi-annotation:4.1.0'
- compile 'commons-logging:commons-logging:1.1.3'
- compile group: 'log4j', name: 'log4j', version:'1.2.17'
- compile group: 'org.apache.commons', name: 'commons-lang3', version:'3.4'
- compile group: 'com.alibaba', name: 'fastjson', version: '1.2.51'
- }
|