<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to change .soe file name using maven pom.xml in Developers Questions</title>
    <link>https://community.esri.com/t5/developers-questions/how-to-change-soe-file-name-using-maven-pom-xml/m-p/1348215#M6824</link>
    <description>&lt;P&gt;Dear&amp;nbsp;&lt;A href="https://community.esri.com/t5/user/viewprofilepage/user-id/614499" target="_self"&gt;&lt;SPAN class=""&gt;IakovMelnikov&lt;/SPAN&gt;&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;I hope you are doing well,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you want to change the name of the .soe file you should change the value inside "&lt;SPAN&gt;artifactId".&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;For example you should do that:&amp;nbsp;&amp;lt;artifactId&amp;gt;MySOIv1.0&amp;lt;/artifactId&amp;gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;After changing the value you should reload project from the .pom file.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If you need more clarification please let me know.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Sincerely yours,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Amir Sarrafzadeh Arasi&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 10 Nov 2023 14:17:49 GMT</pubDate>
    <dc:creator>Amir-Sarrafzadeh-Arasi</dc:creator>
    <dc:date>2023-11-10T14:17:49Z</dc:date>
    <item>
      <title>How to change .soe file name using maven pom.xml</title>
      <link>https://community.esri.com/t5/developers-questions/how-to-change-soe-file-name-using-maven-pom-xml/m-p/1324872#M6731</link>
      <description>&lt;P&gt;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?&lt;/P&gt;&lt;P&gt;Here is an extract from pom.xml:&lt;/P&gt;&lt;P&gt;&amp;lt;plugin&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;lt;groupId&amp;gt;com.esri.arcgis.enterprise.sdk&amp;lt;/groupId&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;lt;artifactId&amp;gt;sdk-plugin&amp;lt;/artifactId&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;lt;version&amp;gt;10.9.1&amp;lt;/version&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;lt;dependencies&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;!-- Include any additional plugin dependencies here if needed --&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/dependencies&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;lt;configuration&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;configProp&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Version&amp;gt;1.0&amp;lt;/Version&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Author&amp;gt;AuthorName&amp;lt;/Author&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Company&amp;gt;CompanyName&amp;lt;/Company&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;TARGETS&amp;gt;10.9&amp;lt;/TARGETS&amp;gt; &amp;lt;!-- Required --&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/configProp&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/configuration&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;lt;executions&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;execution&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;id&amp;gt;package-soe-goal&amp;lt;/id&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;phase&amp;gt;package&amp;lt;/phase&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;goals&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;goal&amp;gt;package-soe&amp;lt;/goal&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/goals&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/execution&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/executions&amp;gt;&lt;BR /&gt;&amp;lt;/plugin&amp;gt;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Sep 2023 18:13:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/how-to-change-soe-file-name-using-maven-pom-xml/m-p/1324872#M6731</guid>
      <dc:creator>IakovMelnikov</dc:creator>
      <dc:date>2023-09-01T18:13:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to change .soe file name using maven pom.xml</title>
      <link>https://community.esri.com/t5/developers-questions/how-to-change-soe-file-name-using-maven-pom-xml/m-p/1348215#M6824</link>
      <description>&lt;P&gt;Dear&amp;nbsp;&lt;A href="https://community.esri.com/t5/user/viewprofilepage/user-id/614499" target="_self"&gt;&lt;SPAN class=""&gt;IakovMelnikov&lt;/SPAN&gt;&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;I hope you are doing well,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you want to change the name of the .soe file you should change the value inside "&lt;SPAN&gt;artifactId".&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;For example you should do that:&amp;nbsp;&amp;lt;artifactId&amp;gt;MySOIv1.0&amp;lt;/artifactId&amp;gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;After changing the value you should reload project from the .pom file.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If you need more clarification please let me know.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Sincerely yours,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Amir Sarrafzadeh Arasi&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Nov 2023 14:17:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/how-to-change-soe-file-name-using-maven-pom-xml/m-p/1348215#M6824</guid>
      <dc:creator>Amir-Sarrafzadeh-Arasi</dc:creator>
      <dc:date>2023-11-10T14:17:49Z</dc:date>
    </item>
  </channel>
</rss>

