2018-02-04 15:29:07 +00:00
|
|
|
<!--
|
2020-02-01 13:03:15 +00:00
|
|
|
~ Copyright (C) 2011-2020 lishid. All rights reserved.
|
2018-02-04 15:29:07 +00:00
|
|
|
~
|
|
|
|
~ This program is free software: you can redistribute it and/or modify
|
|
|
|
~ it under the terms of the GNU General Public License as published by
|
|
|
|
~ the Free Software Foundation, version 3.
|
|
|
|
~
|
|
|
|
~ This program is distributed in the hope that it will be useful,
|
|
|
|
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
~ GNU General Public License for more details.
|
|
|
|
~
|
|
|
|
~ You should have received a copy of the GNU General Public License
|
|
|
|
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
-->
|
|
|
|
|
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>
|
2020-07-16 03:23:31 +00:00
|
|
|
<version>4.1.4-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>
|
2020-03-25 01:01:59 +00:00
|
|
|
<version>3.2.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>
|