pom.xml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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>sys-manage-client</artifactId>
  7. <version>${sys.managerclient.version}</version>
  8. <packaging>jar</packaging>
  9. <name>sys-manage-client</name>
  10. <description>Demo project for Spring Boot</description>
  11. <parent>
  12. <groupId>com.hcloud.microserver</groupId>
  13. <artifactId>common-parent</artifactId>
  14. <version>0.0.1-SNAPSHOT</version>
  15. <relativePath>../common-parent/pom.xml</relativePath>
  16. </parent>
  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.apache.maven.plugins</groupId>-->
  32. <!-- <artifactId>maven-surefire-plugin</artifactId>-->
  33. <!-- <version>2.18.1</version>-->
  34. <!-- <configuration>-->
  35. <!-- <skipTests>true</skipTests>-->
  36. <!-- </configuration>-->
  37. <!-- </plugin>-->
  38. <!-- <plugin>-->
  39. <!-- <groupId>org.springframework.boot</groupId>-->
  40. <!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
  41. <!-- <executions>-->
  42. <!-- <execution>-->
  43. <!-- <goals>-->
  44. <!-- <goal>repackage</goal>&lt;!&ndash;可以把依赖的包都打包到生成的Jar包中 &ndash;&gt;-->
  45. <!-- </goals>-->
  46. <!-- &lt;!&ndash;可以生成不含依赖包的不可执行Jar包 &ndash;&gt;-->
  47. <!-- <configuration>-->
  48. <!-- <classifier>exec</classifier>-->
  49. <!-- </configuration>-->
  50. <!-- </execution>-->
  51. <!-- </executions>-->
  52. <!-- </plugin>-->
  53. <!-- </plugins>-->
  54. <!-- </build>-->
  55. </project>