pom.xml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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>licence</artifactId>
  7. <groupId>com.study</groupId>
  8. <version>1.0.0.RELEASE</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <description>客户端</description>
  12. <artifactId>client</artifactId>
  13. <properties>
  14. <maven.compiler.source>8</maven.compiler.source>
  15. <maven.compiler.target>8</maven.compiler.target>
  16. </properties>
  17. <dependencies>
  18. <!-- core 包的依赖 -->
  19. <dependency>
  20. <groupId>com.study</groupId>
  21. <artifactId>core</artifactId>
  22. <version>1.0.0.RELEASE</version>
  23. <scope>compile</scope>
  24. </dependency>
  25. </dependencies>
  26. <!-- 构建 -->
  27. <build>
  28. <plugins>
  29. <!-- 打包插件 -->
  30. <plugin>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-maven-plugin</artifactId>
  33. </plugin>
  34. </plugins>
  35. </build>
  36. </project>