pom.xml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  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. <groupId>com.sckw</groupId>
  8. <artifactId>sckw-service-platform</artifactId>
  9. <version>1.0.0</version>
  10. </parent>
  11. <artifactId>sckw-modules-api</artifactId>
  12. <version>1.0.0</version>
  13. <packaging>pom</packaging>
  14. <description>接口模块</description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.sckw</groupId>
  18. <artifactId>sckw-common-core</artifactId>
  19. <version>1.0.0</version>
  20. </dependency>
  21. </dependencies>
  22. <modules>
  23. <module>sckw-system-api</module>
  24. <module>sckw-file-api</module>
  25. <module>sckw-message-api</module>
  26. </modules>
  27. <properties>
  28. <maven.compiler.source>17</maven.compiler.source>
  29. <maven.compiler.target>17</maven.compiler.target>
  30. </properties>
  31. </project>