pom.xml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <artifactId>InControl</artifactId>
  8. <groupId>com.rongwei</groupId>
  9. <version>1.1-SNAPSHOT</version>
  10. </parent>
  11. <dependencyManagement>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.jetbrains.kotlin</groupId>
  15. <artifactId>kotlin-stdlib</artifactId>
  16. <version>2.1.20</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.jetbrains.kotlin</groupId>
  20. <artifactId>kotlin-stdlib-jdk8</artifactId>
  21. <version>1.8.21</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.squareup.okhttp3</groupId>
  25. <artifactId>okhttp</artifactId>
  26. <version>4.12.0</version>
  27. </dependency>
  28. </dependencies>
  29. </dependencyManagement>
  30. <groupId>com.rongwei</groupId>
  31. <artifactId>zhsw_service</artifactId>
  32. <version>1.0-SNAPSHOT</version>
  33. <modules>
  34. <module>zhsw-server</module>
  35. <module>zhsw-common</module>
  36. <module>zhsw-entity</module>
  37. </modules>
  38. <packaging>pom</packaging>
  39. </project>