I've created an SOI. Maven "install" goal creates .soe file (MySOI.soe). Is there a way to modify .soe file name ( i.e. append version number) in pom.xml so that the name MySOI.soe becomes MySOIv1.0.soe?
Here is an extract from pom.xml:
<plugin>
<groupId>com.esri.arcgis.enterprise.sdk</groupId>
<artifactId>sdk-plugin</artifactId>
<version>10.9.1</version>
<dependencies>
<!-- Include any additional plugin dependencies here if needed -->
</dependencies>
<configuration>
<configProp>
<Version>1.0</Version>
<Author>AuthorName</Author>
<Company>CompanyName</Company>
<TARGETS>10.9</TARGETS> <!-- Required -->
</configProp>
</configuration>
<executions>
<execution>
<id>package-soe-goal</id>
<phase>package</phase>
<goals>
<goal>package-soe</goal>
</goals>
</execution>
</executions>
</plugin>