pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.studio.nx</groupId>
  7. <artifactId>nx-framework-parent</artifactId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. </parent>
  10. <groupId>com.studio.nx</groupId>
  11. <artifactId>nx-uiac</artifactId>
  12. <packaging>jar</packaging>
  13. <name>nx-uiac</name>
  14. <version>1.0.0-SNAPSHOT</version>
  15. <dependencies>
  16. <dependency>
  17. <groupId>javax.persistence</groupId>
  18. <artifactId>javax.persistence-api</artifactId>
  19. <version>2.2</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.github.binarywang</groupId>
  23. <artifactId>weixin-java-miniapp</artifactId>
  24. <version>4.1.0</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>me.zhyd.oauth</groupId>
  28. <artifactId>JustAuth</artifactId>
  29. <version>1.16.1</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.studio.nx</groupId>
  33. <artifactId>nx-framework-dto</artifactId>
  34. <version>1.0.0-SNAPSHOT</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.studio.nx</groupId>
  38. <artifactId>nx-framework-entity</artifactId>
  39. <version>1.0.0-SNAPSHOT</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.studio.nx</groupId>
  43. <artifactId>nx-framework-error</artifactId>
  44. <version>1.0.0-SNAPSHOT</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.studio.nx</groupId>
  48. <artifactId>nx-framework-jwt</artifactId>
  49. <version>1.0.0-SNAPSHOT</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.studio.nx</groupId>
  53. <artifactId>nx-framework-util</artifactId>
  54. <version>1.0.0-SNAPSHOT</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.studio.nx</groupId>
  58. <artifactId>nx-framework-log</artifactId>
  59. <version>1.0.0-SNAPSHOT</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.studio.nx</groupId>
  63. <artifactId>nx-notice</artifactId>
  64. <version>1.0.0-SNAPSHOT</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.studio.nx</groupId>
  68. <artifactId>nx-oss</artifactId>
  69. <version>1.0.0-SNAPSHOT</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.springframework.boot</groupId>
  73. <artifactId>spring-boot-starter-web</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.springframework.cloud</groupId>
  77. <artifactId>spring-cloud-starter-openfeign</artifactId>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.springframework.boot</groupId>
  81. <artifactId>spring-boot-starter-validation</artifactId>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.springframework.boot</groupId>
  85. <artifactId>spring-boot-starter-data-redis</artifactId>
  86. </dependency>
  87. <dependency>
  88. <groupId>javax.servlet</groupId>
  89. <artifactId>javax.servlet-api</artifactId>
  90. </dependency>
  91. <dependency>
  92. <groupId>io.springfox</groupId>
  93. <artifactId>springfox-boot-starter</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>com.baomidou</groupId>
  97. <artifactId>mybatis-plus-boot-starter</artifactId>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.projectlombok</groupId>
  101. <artifactId>lombok</artifactId>
  102. <optional>true</optional>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.mapstruct</groupId>
  106. <artifactId>mapstruct</artifactId>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.mapstruct</groupId>
  110. <artifactId>mapstruct-jdk8</artifactId>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.mapstruct</groupId>
  114. <artifactId>mapstruct-processor</artifactId>
  115. </dependency>
  116. <dependency>
  117. <groupId>com.alibaba</groupId>
  118. <artifactId>fastjson</artifactId>
  119. </dependency>
  120. </dependencies>
  121. </project>