pom.xml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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. <groupId>com.hcloud.microserver</groupId>
  6. <artifactId>carbon-manager-client</artifactId>
  7. <version>${carbon.managerclient.version}</version>
  8. <name>carbon-manage-client</name>
  9. <description>Demo project for Spring Boot</description>
  10. <properties>
  11. <java.version>1.8</java.version>
  12. </properties>
  13. <parent>
  14. <groupId>com.hcloud.microserver</groupId>
  15. <artifactId>common-parent</artifactId>
  16. <version>0.0.1-SNAPSHOT</version>
  17. <relativePath>../common-parent/pom.xml</relativePath>
  18. </parent>
  19. <dependencies>
  20. <dependency>
  21. <groupId>com.hcloud.microserver</groupId>
  22. <artifactId>common-core</artifactId>
  23. <version>${common.core.version}</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.github.pagehelper</groupId>
  27. <artifactId>pagehelper-spring-boot-starter</artifactId>
  28. </dependency>
  29. </dependencies>
  30. <build>
  31. <plugins>
  32. <plugin>
  33. <groupId>org.apache.maven.plugins</groupId>
  34. <artifactId>maven-surefire-plugin</artifactId>
  35. <version>2.18.1</version>
  36. <configuration>
  37. <skipTests>true</skipTests>
  38. </configuration>
  39. </plugin>
  40. <plugin>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-maven-plugin</artifactId>
  43. <executions>
  44. <execution>
  45. <goals>
  46. <goal>repackage</goal><!--可以把依赖的包都打包到生成的Jar包中 -->
  47. </goals>
  48. <!--可以生成不含依赖包的不可执行Jar包 -->
  49. <configuration>
  50. <classifier>exec</classifier>
  51. </configuration>
  52. </execution>
  53. </executions>
  54. </plugin>
  55. </plugins>
  56. </build>
  57. </project>