我有这样的孩子pom的依赖性.
<dependencies>
<dependency>
<groupId>sample-groupID</groupId>
<artifactId>sfint</artifactId>
<version>1.0.0-SNAPSHOT</version>
<type>war</type>
</dependency>
</dependencies>
Run Code Online (Sandbox Code Playgroud)
我正在使用maven-ear-plugin.
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven.ear.plugin</artifactId>
<version>2.10</version>
<configuration>
<modules>
<webModule>
<groupId>sample-gropuID</groupId>
<artifactId>sfint</artifactId>
<version>1.0.0-SNAPSHOT</version>
<moduleID>WebModule_sfint</moduleID>
<bundleFileName>sfint.war</bundleFileName>
</webModule>
</modules>
</configuration>
</plugin>
Run Code Online (Sandbox Code Playgroud)
现在我的问题是我希望我的war文件是这样的--sfint.war但我得到的是 - sfint.1.0.0-SNAPSHOT.war
任何帮助?
我在Win10机器上安装了docker和docker工具箱。
docker -v
Docker version 18.06.0-ce, build 0ffa825
docker-compose -v
docker-compose version 1.22.0, build f46880fe
我的泊坞窗版本是最新的,但编辑器不是。
知道如何更新作曲家的版本。