Advertisement
Aleksandr37rus

Untitled

Jul 25th, 2022
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 5.07 KB | None | 0 0
  1.  
  2. dependencies {
  3.     [
  4.             "org.springframework:spring-context",
  5.             "org.springframework.boot:spring-boot-starter-web",
  6.             runtime('org.springframework.boot:spring-boot-devtools'),
  7.             testCompile('org.springframework.boot:spring-boot-starter-test'),
  8.             compile(group: 'org.springframework.boot', name: 'spring-boot-starter-security', version: '2.3.1.RELEASE'),
  9.             implementation('org.springframework.boot:spring-boot-starter-web'),
  10.             implementation('org.springframework.boot:spring-boot-starter-thymeleaf'),
  11.             implementation('org.springframework.boot:spring-boot-starter-data-jpa'),
  12.             compile(group: 'org.apache.poi', name: 'poi', version: '4.1.2'),
  13.             compile(group: 'org.apache.poi', name: 'poi-ooxml', version: '4.1.2'),
  14.             compile(group: 'org.javassist', name: 'javassist', version: '3.27.0-GA'),
  15.            // implementation('org.postgresql:postgresql'),
  16.             compile('org.projectlombok:lombok'),
  17.             compile('javax.xml.bind:jaxb-api'),
  18.             compile(group: 'org.springframework.boot', name: 'spring-boot-starter-mail', version: '1.2.0.RELEASE'),
  19.             implementation('me.tongfei:progressbar:0.8.1'),
  20.             //compile("com.fasterxml.jackson.datatype:jackson-datatype-jsr310"),
  21.             implementation(group: 'commons-io', name: 'commons-io', version: '2.8.0'),
  22.             compile(group: 'org.codehaus.jackson', name: 'jackson-mapper-asl', version: '1.9.13'),
  23.             // https://mvnrepository.com/artifact/org.codehaus.jackson/jackson-core-asl
  24.            // implementation(group: 'org.codehaus.jackson', name: 'jackson-core-asl', version: '1.9.13'),
  25.             compile(group: 'org.hibernate', name: 'hibernate-gradle-plugin', version: '5.4.27.Final'),
  26.             compile(group: 'com.bazarnazar', name: 'pgjson', version: '1.3'),
  27.             implementation('org.json:json:20171018'),
  28.             /*implementation(group: 'org.springframework.boot', name: 'spring-boot-starter-log4j2', version: '2.5.4'),*/
  29.             compile(group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.17.1'),
  30.             compile(group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.17.1'),
  31.             implementation(group: 'com.google.guava', name: 'guava', version: '11.0.2'),
  32.             implementation(group: 'org.passay', name: 'passay', version: '1.0'),
  33.             implementation(group: 'net.lingala.zip4j', name: 'zip4j', version: '1.2.4'),
  34.             compile(group: 'org.modelmapper', name: 'modelmapper', version: '2.3.2'),
  35.             //new add for info safety
  36.             // https://mvnrepository.com/artifact/org.apache.commons/commons-compress
  37.             implementation(group: 'org.apache.commons', name: 'commons-compress', version: '1.19'),
  38.             // https://mvnrepository.com/artifact/org.cryptacular/cryptacular
  39.             implementation(group: 'org.cryptacular', name: 'cryptacular', version: '1.0'),
  40.             // https://mvnrepository.com/artifact/org.hibernate/hibernate-validator
  41.             implementation(group: 'org.hibernate', name: 'hibernate-validator', version: '8.0.0.CR1'),
  42.             // https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind
  43.             implementation(group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.13.3'),
  44.             // https://mvnrepository.com/artifact/com.fasterxml.jackson.datatype/jackson-datatype-jsr310
  45.             implementation(group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jsr310', version: '2.9.6'),
  46.             // https://mvnrepository.com/artifact/net.minidev/json-smart
  47.             implementation(group: 'net.minidev', name: 'json-smart', version: '2.3'),
  48.             // https://mvnrepository.com/artifact/junit/junit
  49.             testImplementation(group: 'junit', name: 'junit', version: '4.12'),
  50.             // https://mvnrepository.com/artifact/org.postgresql/postgresql
  51.             implementation(group: 'org.postgresql', name: 'postgresql', version: '42.2.2'),
  52.             // https://mvnrepository.com/artifact/org.yaml/snakeyaml
  53.             implementation(group: 'org.yaml', name: 'snakeyaml', version: '1.19'),
  54.             // https://mvnrepository.com/artifact/org.springframework.data/spring-data-jpa
  55.             implementation(group: 'org.springframework.data', name: 'spring-data-jpa', version: '2.7.2'),
  56.             // https://mvnrepository.com/artifact/org.thymeleaf/thymeleaf-spring5
  57.             implementation(group: 'org.thymeleaf', name: 'thymeleaf-spring5', version: '3.1.0.M2'),
  58.             // https://mvnrepository.com/artifact/net.lingala.zip4j/zip4j
  59.             implementation(group: 'net.lingala.zip4j', name: 'zip4j', version: '2.11.1'),
  60.             // https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient
  61.             implementation(group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.13')
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.     ].each { dep ->
  69.         compile(dep) {
  70.             exclude module: "spring-boot-starter-logging"
  71.             exclude module: "logback-classic"
  72.         }
  73.     }
  74. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement