pom.xml 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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. <modelVersion>4.0.0</modelVersion> <parent>
  6. <groupId>com.hcloud.microserver</groupId>
  7. <artifactId>common-parent</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <groupId>com.hywa</groupId>
  11. <artifactId>supply-chain-base-client</artifactId>
  12. <version>${supply.chain.base.client.version}</version>
  13. <name>supply-chain-base-client</name>
  14. <description>Demo project for Spring Boot</description>
  15. <properties>
  16. <java.version>1.8</java.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.springframework.cloud</groupId>
  21. <artifactId>spring-cloud-starter-feign</artifactId>
  22. <version>1.3.1.RELEASE</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.hcloud.microserver</groupId>
  26. <artifactId>common-core</artifactId>
  27. <version>${common.core.version}</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.github.pagehelper</groupId>
  31. <artifactId>pagehelper-spring-boot-starter</artifactId>
  32. </dependency>
  33. </dependencies>
  34. <build>
  35. <plugins>
  36. <plugin>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-maven-plugin</artifactId>
  39. <executions>
  40. <execution>
  41. <goals>
  42. <goal>repackage</goal><!--可以把依赖的包都打包到生成的Jar包中 -->
  43. </goals>
  44. <!--可以生成不含依赖包的不可执行Jar包 -->
  45. <configuration> <classifier>exec</classifier> </configuration>
  46. </execution>
  47. </executions>
  48. </plugin>
  49. <!--<plugin>-->
  50. <!--<groupId>org.mybatis.generator</groupId>-->
  51. <!--<artifactId>mybatis-generator-maven-plugin</artifactId>-->
  52. <!--<version>1.3.2</version>-->
  53. <!--<configuration>-->
  54. <!--<configurationFile>src/main/resources/mybatis-generator/generatorConfig.xml-->
  55. <!--</configurationFile>-->
  56. <!--<verbose>true</verbose>-->
  57. <!--<overwrite>true</overwrite>-->
  58. <!--</configuration>-->
  59. <!--<executions>-->
  60. <!--<execution>-->
  61. <!--<id>Generate MyBatis Artifacts</id>-->
  62. <!--<goals>-->
  63. <!--<goal>generate</goal>-->
  64. <!--</goals>-->
  65. <!--</execution>-->
  66. <!--</executions>-->
  67. <!--<dependencies>-->
  68. <!--<dependency>-->
  69. <!--<groupId>org.mybatis.generator</groupId>-->
  70. <!--<artifactId>mybatis-generator-core</artifactId>-->
  71. <!--<version>1.3.2</version>-->
  72. <!--</dependency>-->
  73. <!--</dependencies>-->
  74. <!--</plugin>-->
  75. </plugins>
  76. </build>
  77. </project>