pom.xml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. <build>
  12. <resources>
  13. <resource>
  14. <directory>src/main/resources</directory>
  15. <!-- 包含所有文件(默认行为) -->
  16. <includes>
  17. <include>**/*</include>
  18. </includes>
  19. </resource>
  20. </resources>
  21. </build>
  22. <dependencyManagement>
  23. <dependencies>
  24. <dependency>
  25. <groupId>org.jetbrains.kotlin</groupId>
  26. <artifactId>kotlin-stdlib</artifactId>
  27. <version>2.1.20</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.jetbrains.kotlin</groupId>
  31. <artifactId>kotlin-stdlib-jdk8</artifactId>
  32. <version>1.8.21</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.squareup.okhttp3</groupId>
  36. <artifactId>okhttp</artifactId>
  37. <version>4.12.0</version>
  38. </dependency>
  39. </dependencies>
  40. </dependencyManagement>
  41. <groupId>com.rongwei</groupId>
  42. <artifactId>zhsw_service</artifactId>
  43. <version>1.0-SNAPSHOT</version>
  44. <modules>
  45. <module>zhsw-server</module>
  46. <module>zhsw-common</module>
  47. <module>zhsw-entity</module>
  48. </modules>
  49. <packaging>pom</packaging>
  50. </project>