Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- dependencies {
- [
- "org.springframework:spring-context",
- "org.springframework.boot:spring-boot-starter-web",
- runtime('org.springframework.boot:spring-boot-devtools'),
- testCompile('org.springframework.boot:spring-boot-starter-test'),
- compile(group: 'org.springframework.boot', name: 'spring-boot-starter-security', version: '2.3.1.RELEASE'),
- implementation('org.springframework.boot:spring-boot-starter-web'),
- implementation('org.springframework.boot:spring-boot-starter-thymeleaf'),
- compile(group: 'org.apache.poi', name: 'poi', version: '4.1.2'),
- compile(group: 'org.apache.poi', name: 'poi-ooxml', version: '4.1.2'),
- compile(group: 'org.javassist', name: 'javassist', version: '3.27.0-GA'),
- // implementation('org.postgresql:postgresql'),
- compile('org.projectlombok:lombok'),
- compile('javax.xml.bind:jaxb-api'),
- compile(group: 'org.springframework.boot', name: 'spring-boot-starter-mail', version: '1.2.0.RELEASE'),
- implementation('me.tongfei:progressbar:0.8.1'),
- implementation(group: 'commons-io', name: 'commons-io', version: '2.8.0'),
- compile(group: 'org.codehaus.jackson', name: 'jackson-mapper-asl', version: '1.9.13'),
- compile(group: 'org.hibernate', name: 'hibernate-gradle-plugin', version: '5.4.27.Final'),
- compile(group: 'com.bazarnazar', name: 'pgjson', version: '1.3'),
- implementation('org.json:json:20171018'),
- //implementation(group: 'org.springframework.boot', name: 'spring-boot-starter-log4j2', version: '2.5.4'),*/
- compile(group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.17.1'),
- compile(group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.17.1'),
- implementation(group: 'com.google.guava', name: 'guava', version: '30.0-jre'),
- implementation(group: 'org.passay', name: 'passay', version: '1.0'),
- implementation(group: 'net.lingala.zip4j', name: 'zip4j', version: '1.2.4'),
- compile(group: 'org.modelmapper', name: 'modelmapper', version: '2.3.2'),
- //new add for info safety
- // https://mvnrepository.com/artifact/org.apache.commons/commons-compress
- implementation(group: 'org.apache.commons', name: 'commons-compress', version: '1.21'),
- // https://mvnrepository.com/artifact/org.cryptacular/cryptacular
- implementation(group: 'org.cryptacular', name: 'cryptacular', version: '1.2.4'),
- // https://mvnrepository.com/artifact/org.hibernate/hibernate-validator
- implementation(group: 'org.hibernate', name: 'hibernate-validator', version: '6.0.23.Final'),
- // https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind
- //implementation(group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.12.6.1'), //
- // https://mvnrepository.com/artifact/com.fasterxml.jackson.datatype/jackson-datatype-jsr310
- //implementation(group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jsr310', version: '2.9.8'),
- compile("com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.9.8"),
- // https://mvnrepository.com/artifact/net.minidev/json-smart
- implementation(group: 'net.minidev', name: 'json-smart', version: '2.4.8'),
- // https://mvnrepository.com/artifact/junit/junit
- testImplementation(group: 'junit', name: 'junit', version: '4.13.1'),
- // https://mvnrepository.com/artifact/org.postgresql/postgresql
- implementation(group: 'org.postgresql', name: 'postgresql', version: '42.3.3'),
- // https://mvnrepository.com/artifact/org.yaml/snakeyaml
- implementation(group: 'org.yaml', name: 'snakeyaml', version: '1.26'),
- // https://mvnrepository.com/artifact/org.springframework.data/spring-data-jpa
- compile("org.springframework.boot:spring-boot-starter-data-jpa:2.6.6"),
- // https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-gradle-plugin
- implementation(group: 'org.springframework.boot', name: 'spring-boot-gradle-plugin', version: '2.6.3'),
- // https://mvnrepository.com/artifact/org.springframework.data/spring-data-commons
- //implementation(group: 'org.springframework.data', name: 'spring-data-jpa', version: '2.1.8.RELEASE'), //,
- // https://mvnrepository.com/artifact/org.thymeleaf/thymeleaf-spring5
- //implementation(group: 'org.thymeleaf', name: 'thymeleaf-spring5', version: '3.0.13.RELEASE'),
- // https://mvnrepository.com/artifact/net.lingala.zip4j/zip4j
- implementation(group: 'net.lingala.zip4j', name: 'zip4j', version: '1.3.3')
- ].each { dep ->
- compile(dep) {
- exclude module: "spring-boot-starter-logging"
- exclude module: "logback-classic"
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement