Advertisement
Aleksandr37rus

Untitled

Jul 15th, 2022
735
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 5.04 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.             compile(group: 'org.apache.poi', name: 'poi', version: '4.1.2'),
  12.             compile(group: 'org.apache.poi', name: 'poi-ooxml', version: '4.1.2'),
  13.             compile(group: 'org.javassist', name: 'javassist', version: '3.27.0-GA'),
  14.            // implementation('org.postgresql:postgresql'),
  15.             compile('org.projectlombok:lombok'),
  16.             compile('javax.xml.bind:jaxb-api'),
  17.             compile(group: 'org.springframework.boot', name: 'spring-boot-starter-mail', version: '1.2.0.RELEASE'),
  18.             implementation('me.tongfei:progressbar:0.8.1'),
  19.             implementation(group: 'commons-io', name: 'commons-io', version: '2.8.0'),
  20.             compile(group: 'org.codehaus.jackson', name: 'jackson-mapper-asl', version: '1.9.13'),
  21.             compile(group: 'org.hibernate', name: 'hibernate-gradle-plugin', version: '5.4.27.Final'),
  22.             compile(group: 'com.bazarnazar', name: 'pgjson', version: '1.3'),
  23.             implementation('org.json:json:20171018'),
  24.             //implementation(group: 'org.springframework.boot', name: 'spring-boot-starter-log4j2', version: '2.5.4'),*/
  25.             compile(group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.17.1'),
  26.             compile(group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.17.1'),
  27.             implementation(group: 'com.google.guava', name: 'guava', version: '30.0-jre'),
  28.             implementation(group: 'org.passay', name: 'passay', version: '1.0'),
  29.             implementation(group: 'net.lingala.zip4j', name: 'zip4j', version: '1.2.4'),
  30.             compile(group: 'org.modelmapper', name: 'modelmapper', version: '2.3.2'),
  31.             //new add for info safety
  32.             // https://mvnrepository.com/artifact/org.apache.commons/commons-compress
  33.             implementation(group: 'org.apache.commons', name: 'commons-compress', version: '1.21'),
  34.             // https://mvnrepository.com/artifact/org.cryptacular/cryptacular
  35.             implementation(group: 'org.cryptacular', name: 'cryptacular', version: '1.2.4'),
  36.             // https://mvnrepository.com/artifact/org.hibernate/hibernate-validator
  37.             implementation(group: 'org.hibernate', name: 'hibernate-validator', version: '6.0.23.Final'),
  38.             // https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind
  39.             //implementation(group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.12.6.1'), //
  40.             // https://mvnrepository.com/artifact/com.fasterxml.jackson.datatype/jackson-datatype-jsr310
  41.             //implementation(group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jsr310', version: '2.9.8'),
  42.             compile("com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.9.8"),
  43.             // https://mvnrepository.com/artifact/net.minidev/json-smart
  44.             implementation(group: 'net.minidev', name: 'json-smart', version: '2.4.8'),
  45.             // https://mvnrepository.com/artifact/junit/junit
  46.             testImplementation(group: 'junit', name: 'junit', version: '4.13.1'),
  47.             // https://mvnrepository.com/artifact/org.postgresql/postgresql
  48.             implementation(group: 'org.postgresql', name: 'postgresql', version: '42.3.3'),
  49.             // https://mvnrepository.com/artifact/org.yaml/snakeyaml
  50.             implementation(group: 'org.yaml', name: 'snakeyaml', version: '1.26'),
  51.             // https://mvnrepository.com/artifact/org.springframework.data/spring-data-jpa
  52.             compile("org.springframework.boot:spring-boot-starter-data-jpa:2.6.6"),
  53.  
  54.             // https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-gradle-plugin
  55.             implementation(group: 'org.springframework.boot', name: 'spring-boot-gradle-plugin', version: '2.6.3'),
  56.  
  57.             // https://mvnrepository.com/artifact/org.springframework.data/spring-data-commons
  58.             //implementation(group: 'org.springframework.data', name: 'spring-data-jpa', version: '2.1.8.RELEASE'), //,
  59.  
  60.             // https://mvnrepository.com/artifact/org.thymeleaf/thymeleaf-spring5
  61.             //implementation(group: 'org.thymeleaf', name: 'thymeleaf-spring5', version: '3.0.13.RELEASE'),
  62.             // https://mvnrepository.com/artifact/net.lingala.zip4j/zip4j
  63.             implementation(group: 'net.lingala.zip4j', name: 'zip4j', version: '1.3.3')
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.     ].each { dep ->
  71.         compile(dep) {
  72.             exclude module: "spring-boot-starter-logging"
  73.             exclude module: "logback-classic"
  74.         }
  75.     }
  76. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement