build.gradle 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. buildscript {
  2. ext {
  3. queryDslVersion = '4.2.1'
  4. lombokVersion = '1.18.12'
  5. }
  6. }
  7. plugins {
  8. id 'org.springframework.boot' version '2.4.2'
  9. id 'io.spring.dependency-management' version '1.0.11.RELEASE'
  10. id 'java'
  11. }
  12. group = 'com.rf'
  13. version = 'v1.1-'+getNewVersion()
  14. sourceCompatibility = '8'
  15. configurations {
  16. compileOnly {
  17. extendsFrom annotationProcessor
  18. }
  19. }
  20. repositories {
  21. maven {
  22. url 'https://maven.aliyun.com/repository/public'
  23. }
  24. maven {
  25. credentials {
  26. username '0p07qf'
  27. password 'z1XwdFEf4M'
  28. }
  29. url 'https://repo.rdc.aliyun.com/repository/107260-release-GqdtcU/'
  30. }
  31. maven {
  32. credentials {
  33. username '0p07qf'
  34. password 'z1XwdFEf4M'
  35. }
  36. url 'https://repo.rdc.aliyun.com/repository/107260-snapshot-C6ziam/'
  37. }
  38. maven {
  39. url "https://plugins.gradle.org/m2/"
  40. }
  41. mavenLocal()
  42. }
  43. dependencies {
  44. implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
  45. implementation 'org.springframework.boot:spring-boot-starter-web'
  46. compileOnly 'org.projectlombok:lombok'
  47. annotationProcessor 'org.projectlombok:lombok'
  48. implementation 'org.springframework.boot:spring-boot-starter-validation:2.6.3'
  49. implementation 'mysql:mysql-connector-java:8.0.21'
  50. implementation("com.querydsl:querydsl-core:${queryDslVersion}")
  51. implementation("com.querydsl:querydsl-jpa:${queryDslVersion}")
  52. annotationProcessor("com.querydsl:querydsl-apt:${queryDslVersion}:jpa",
  53. "org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.2.Final",
  54. "javax.annotation:javax.annotation-api:1.3.2",
  55. "org.projectlombok:lombok")
  56. compileOnly "org.projectlombok:lombok:${lombokVersion}"
  57. annotationProcessor "org.projectlombok:lombok:${lombokVersion}"
  58. implementation("org.projectlombok:lombok:${lombokVersion}")
  59. testImplementation 'org.springframework.boot:spring-boot-starter-test:2.6.3'
  60. implementation 'com.alibaba:fastjson:1.2.83'
  61. implementation 'org.apache.poi:poi-ooxml:3.17'
  62. implementation 'commons-lang:commons-lang:2.6'
  63. implementation group: 'io.springfox', name: 'springfox-swagger2', version: '2.9.2'
  64. implementation group: 'io.springfox', name: 'springfox-swagger-ui', version: '2.9.2'
  65. implementation group: 'io.swagger', name: 'swagger-annotations', version: '1.5.22'
  66. implementation group: 'io.swagger', name: 'swagger-models', version: '1.5.22'
  67. implementation group: 'commons-fileupload', name: 'commons-fileupload', version: '1.3.1'
  68. implementation group: 'com.github.qcloudsms', name: 'qcloudsms', version: '1.0.6'
  69. implementation group: 'cn.keking.project', name: 'kk-anti-reptile', version: '1.0.0-RELEASE'
  70. implementation group: 'com.belerweb', name: 'pinyin4j', version: '2.5.1'
  71. implementation 'org.springframework.boot:spring-boot-starter-websocket:2.5.5'
  72. implementation 'org.java-websocket:Java-WebSocket:1.5.1'
  73. implementation 'com.auth0:java-jwt:3.18.2'
  74. implementation group: 'com.alibaba', name: 'druid-spring-boot-starter', version: '1.2.9'
  75. testImplementation group: 'junit', name: 'junit', version: '4.13.2'
  76. implementation 'com.github.wechatpay-apiv3:wechatpay-apache-httpclient:0.4.7'
  77. implementation group: 'org.springframework.boot', name: 'spring-boot-configuration-processor', version: '2.6.8'
  78. implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.6'
  79. implementation group: 'cn.hutool', name: 'hutool-all', version: '5.7.18'
  80. implementation group: 'org.springframework.boot', name: 'spring-boot-starter-data-redis', version: '2.6.3'
  81. implementation group: 'org.dom4j', name: 'dom4j', version: '2.1.1'
  82. implementation group: 'commons-net', name: 'commons-net', version: '3.6'
  83. implementation group: 'dnsjava', name: 'dnsjava', version: '2.1.1'
  84. implementation group: 'com.sun.mail', name: 'javax.mail', version: '1.6.2'
  85. implementation "io.github.fanyong920:jvppeteer:1.1.5"
  86. // https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp
  87. implementation 'com.squareup.okhttp3:okhttp:4.9.3'
  88. }
  89. test {
  90. useJUnitPlatform()
  91. }
  92. def getNewVersion(){
  93. return new Date().format("yyyyMMddHHmmss",TimeZone.getTimeZone("GMT+08:00"))
  94. }