1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?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>
- <relativePath>../common-parent/pom.xml</relativePath>
- </parent>
- <groupId>com.hcloud.microserver</groupId>
- <artifactId>org-manage-client</artifactId>
- <version>${org.managerclient.version}</version>
- <packaging>jar</packaging>
- <name>org-manage-client</name>
- <description>common system manage</description>
- <dependencies>
- <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>
- </plugins>
- </build>
- </project>
|