1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion> <parent>
- <groupId>com.hcloud.microserver</groupId>
- <artifactId>common-parent</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </parent>
- <groupId>com.hywa</groupId>
- <artifactId>supply-chain-base-client</artifactId>
- <version>${supply.chain.base.client.version}</version>
- <name>supply-chain-base-client</name>
- <description>Demo project for Spring Boot</description>
- <properties>
- <java.version>1.8</java.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-starter-feign</artifactId>
- <version>1.3.1.RELEASE</version>
- </dependency>
- <dependency>
- <groupId>com.hcloud.microserver</groupId>
- <artifactId>common-core</artifactId>
- <version>${common.core.version}</version>
- </dependency>
- <dependency>
- <groupId>com.github.pagehelper</groupId>
- <artifactId>pagehelper-spring-boot-starter</artifactId>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <executions>
- <execution>
- <goals>
- <goal>repackage</goal><!--可以把依赖的包都打包到生成的Jar包中 -->
- </goals>
- <!--可以生成不含依赖包的不可执行Jar包 -->
- <configuration> <classifier>exec</classifier> </configuration>
- </execution>
- </executions>
- </plugin>
- <!--<plugin>-->
- <!--<groupId>org.mybatis.generator</groupId>-->
- <!--<artifactId>mybatis-generator-maven-plugin</artifactId>-->
- <!--<version>1.3.2</version>-->
- <!--<configuration>-->
- <!--<configurationFile>src/main/resources/mybatis-generator/generatorConfig.xml-->
- <!--</configurationFile>-->
- <!--<verbose>true</verbose>-->
- <!--<overwrite>true</overwrite>-->
- <!--</configuration>-->
- <!--<executions>-->
- <!--<execution>-->
- <!--<id>Generate MyBatis Artifacts</id>-->
- <!--<goals>-->
- <!--<goal>generate</goal>-->
- <!--</goals>-->
- <!--</execution>-->
- <!--</executions>-->
- <!--<dependencies>-->
- <!--<dependency>-->
- <!--<groupId>org.mybatis.generator</groupId>-->
- <!--<artifactId>mybatis-generator-core</artifactId>-->
- <!--<version>1.3.2</version>-->
- <!--</dependency>-->
- <!--</dependencies>-->
- <!--</plugin>-->
- </plugins>
- </build>
- </project>
|