pom.xml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. <artifactId>client-offline</artifactId>
  12. <properties>
  13. <maven.compiler.source>8</maven.compiler.source>
  14. <maven.compiler.target>8</maven.compiler.target>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.study</groupId>
  19. <artifactId>core</artifactId>
  20. <version>1.0.0.RELEASE</version>
  21. <!-- 引用一个本地的 JAR 文件,而不是从 Maven 的中央仓库或其他远程仓库中获取 -->
  22. <scope>system</scope>
  23. <!-- 指定该 JAR 文件的路径 -->
  24. <systemPath>${basedir}/src/main/resources/lib/core-1.0.0.RELEASE.jar</systemPath>
  25. </dependency>
  26. </dependencies>
  27. <!-- 构建 -->
  28. <build>
  29. <plugins>
  30. <!-- 打包插件 -->
  31. <plugin>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-maven-plugin</artifactId>
  34. <!-- 把 scope 为 system 的包也打进来 -->
  35. <configuration>
  36. <includeSystemScope>true</includeSystemScope>
  37. </configuration>
  38. <executions>
  39. <execution>
  40. <goals>
  41. <goal>repackage</goal>
  42. </goals>
  43. </execution>
  44. </executions>
  45. </plugin>
  46. </plugins>
  47. </build>
  48. </project>