pom.xml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.hcloud.microserver</groupId>
  7. <artifactId>common-parent</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. <relativePath>../common-parent/pom.xml</relativePath>
  10. </parent>
  11. <groupId>com.hcloud.microserver</groupId>
  12. <artifactId>org-manage-client</artifactId>
  13. <version>${org.managerclient.version}</version>
  14. <packaging>jar</packaging>
  15. <name>org-manage-client</name>
  16. <description>common system manage</description>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.hcloud.microserver</groupId>
  20. <artifactId>common-core</artifactId>
  21. <version>${common.core.version}</version>
  22. </dependency>
  23. <!--<dependency>-->
  24. <!--<groupId>com.github.pagehelper</groupId>-->
  25. <!--<artifactId>pagehelper-spring-boot-starter</artifactId>-->
  26. <!--</dependency>-->
  27. </dependencies>
  28. <build>
  29. <plugins>
  30. <plugin>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-maven-plugin</artifactId>
  33. <executions>
  34. <execution>
  35. <goals>
  36. <goal>repackage</goal><!--可以把依赖的包都打包到生成的Jar包中 -->
  37. </goals>
  38. <!--可以生成不含依赖包的不可执行Jar包 -->
  39. <configuration> <classifier>exec</classifier> </configuration>
  40. </execution>
  41. </executions>
  42. </plugin>
  43. </plugins>
  44. </build>
  45. </project>