2016-11-25 13:01:44 +00:00
|
|
|
<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.lishid</groupId>
|
2016-12-01 02:26:56 +00:00
|
|
|
<artifactId>openinvparent</artifactId>
|
2017-07-05 09:53:38 +00:00
|
|
|
<version>3.3.1-SNAPSHOT</version>
|
2016-11-25 13:01:44 +00:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>openinvassembly</artifactId>
|
|
|
|
<name>OpenInvAssembly</name>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<directory>../target</directory>
|
|
|
|
<finalName>OpenInv</finalName>
|
|
|
|
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2016-12-01 02:26:56 +00:00
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<version>3.0.0</version>
|
2016-11-25 13:01:44 +00:00
|
|
|
<executions>
|
|
|
|
<execution>
|
2016-12-01 02:26:56 +00:00
|
|
|
<id>reactor-uberjar</id>
|
2016-11-25 13:01:44 +00:00
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
2016-12-01 02:26:56 +00:00
|
|
|
<goal>single</goal>
|
2016-11-25 13:01:44 +00:00
|
|
|
</goals>
|
2016-12-01 02:26:56 +00:00
|
|
|
<configuration>
|
|
|
|
<appendAssemblyId>false</appendAssemblyId>
|
|
|
|
<descriptors>
|
|
|
|
<descriptor>src/assembly/reactor-uberjar.xml</descriptor>
|
|
|
|
</descriptors>
|
|
|
|
</configuration>
|
2016-11-25 13:01:44 +00:00
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
2016-12-01 02:26:56 +00:00
|
|
|
|
2016-11-25 13:01:44 +00:00
|
|
|
</build>
|
|
|
|
|
2016-12-01 02:26:56 +00:00
|
|
|
</project>
|