Я добавил плагин развертывания в моем pom, и он работает для развертывания файла с настроенным именем, app-service-0.1-SNAPSHOT-standalone.jar
.
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
<executions>
<execution>
<id>deploy-file</id>
<phase>deploy</phase>
<goals>
<goal>deploy-file</goal>
</goals>
<configuration>
<repositoryId>app-snapshots</repositoryId>
<file>target\app-service-0.1-SNAPSHOT.jar</file>
<url>https://artifactory.intranet.app.com/artifactory/mvn-snapshot-local</url>
<groupId>com.app.test</groupId>
<artifactId>app-service</artifactId>
<version>0.1-SNAPSHOT</version>
<files>target\app-service.jar</files>
<classifiers>int</classifiers>
<types>jar</types>
</configuration>
</execution>
</executions>
</plugin>
Однако, поскольку развертывание по умолчанию все еще начинается, файл также развертывается с именем по умолчанию, app-service-0.1-SNAPSHOT.jar
.Есть ли способ подавить развертывание по умолчанию?