Compare commits
2 Commits
25d6ad11a1
...
dea76d6da2
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
dea76d6da2 | ||
|
|
ea9fc9fad2 |
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
# 使用说明,用来提示输入参数
|
# 使用说明,用来提示输入参数
|
||||||
usage() {
|
usage() {
|
||||||
echo "Usage: sh deploy.sh [port|base|modules|stop|rm]"
|
echo "Usage: sh deploy.sh [port|base|modules|backend|frontend|stop|rm]"
|
||||||
exit 1
|
exit 1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
12
pom.xml
12
pom.xml
@@ -358,6 +358,18 @@
|
|||||||
<encoding>${project.build.sourceEncoding}</encoding>
|
<encoding>${project.build.sourceEncoding}</encoding>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-jar-plugin</artifactId>
|
||||||
|
<version>3.2.0</version>
|
||||||
|
<configuration>
|
||||||
|
<archive>
|
||||||
|
<manifestEntries>
|
||||||
|
<Implementation-Version>${wfc.version}</Implementation-Version>
|
||||||
|
</manifestEntries>
|
||||||
|
</archive>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
<pluginManagement>
|
<pluginManagement>
|
||||||
<plugins>
|
<plugins>
|
||||||
|
|||||||
@@ -10,6 +10,9 @@
|
|||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<artifactId>wfc-modules-payment</artifactId>
|
<artifactId>wfc-modules-payment</artifactId>
|
||||||
|
<properties>
|
||||||
|
<wfc-modules-payment.version>1.0.0</wfc-modules-payment.version>
|
||||||
|
</properties>
|
||||||
|
|
||||||
<description>
|
<description>
|
||||||
wfc-modules-payment
|
wfc-modules-payment
|
||||||
@@ -95,6 +98,18 @@
|
|||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-jar-plugin</artifactId>
|
||||||
|
<version>3.2.0</version>
|
||||||
|
<configuration>
|
||||||
|
<archive>
|
||||||
|
<manifestEntries>
|
||||||
|
<Implementation-Version>${wfc-modules-payment.version}</Implementation-Version>
|
||||||
|
</manifestEntries>
|
||||||
|
</archive>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user