pom.xml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>business-modules</artifactId>
  7. <groupId>com.sckw</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>business-mine</artifactId>
  12. <properties>
  13. <maven.compiler.source>17</maven.compiler.source>
  14. <maven.compiler.target>17</maven.compiler.target>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter-web</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-validation</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.sckw</groupId>
  27. <artifactId>business-common-core</artifactId>
  28. <version>1.0.0</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.sckw</groupId>
  32. <artifactId>business-common-datasource</artifactId>
  33. <version>1.0.0</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.sckw</groupId>
  37. <artifactId>business-common-redis</artifactId>
  38. <version>1.0.0</version>
  39. </dependency>
  40. <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
  41. <dependency>
  42. <groupId>com.google.code.gson</groupId>
  43. <artifactId>gson</artifactId>
  44. <version>2.11.0</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.sckw</groupId>
  48. <artifactId>business-usual-transport</artifactId>
  49. <version>1.0.0</version>
  50. <scope>compile</scope>
  51. </dependency>
  52. </dependencies>
  53. </project>