Tony CHEMIT pushed to branch develop at ultreiaio / ird-observe

Commits:

1 changed file:

Changes:

  • client/runner/pom.xml
    ... ... @@ -261,9 +261,21 @@
    261 261
                   <goal>run</goal>
    
    262 262
                 </goals>
    
    263 263
               </execution>
    
    264
    +          <execution>
    
    265
    +            <id>Prepare release files</id>
    
    266
    +            <phase>integration-test</phase>
    
    267
    +            <configuration>
    
    268
    +              <target>
    
    269
    +                <copy failonerror="true" overwrite="true" file="${project.build.directory}/${project.build.finalName}.jar" tofile="${project.build.directory}/${applicationJarName}.jar" />
    
    270
    +                <copy failonerror="true" overwrite="true" file="${project.build.directory}/${project.build.finalName}.exe" tofile="${project.build.directory}/${applicationJarName}.exe" />
    
    271
    +              </target>
    
    272
    +            </configuration>
    
    273
    +            <goals>
    
    274
    +              <goal>run</goal>
    
    275
    +            </goals>
    
    276
    +          </execution>
    
    264 277
             </executions>
    
    265 278
           </plugin>
    
    266
    -
    
    267 279
         </plugins>
    
    268 280
       </build>
    
    269 281
     
    
    ... ... @@ -280,34 +292,6 @@
    280 292
           <properties>
    
    281 293
             <devMode>false</devMode>
    
    282 294
           </properties>
    
    283
    -
    
    284
    -      <build>
    
    285
    -
    
    286
    -        <plugins>
    
    287
    -
    
    288
    -          <plugin>
    
    289
    -            <artifactId>maven-antrun-plugin</artifactId>
    
    290
    -            <inherited>false</inherited>
    
    291
    -            <executions>
    
    292
    -
    
    293
    -              <execution>
    
    294
    -                <id>Prepare release files</id>
    
    295
    -                <phase>integration-test</phase>
    
    296
    -                <configuration>
    
    297
    -                  <target>
    
    298
    -                    <copy failonerror="true" overwrite="true" file="${project.build.directory}/${project.build.finalName}.jar" tofile="${project.build.directory}/${applicationJarName}.jar" />
    
    299
    -                    <copy failonerror="true" overwrite="true" file="${project.build.directory}/${project.build.finalName}.exe" tofile="${project.build.directory}/${applicationJarName}.exe" />
    
    300
    -                  </target>
    
    301
    -                </configuration>
    
    302
    -                <goals>
    
    303
    -                  <goal>run</goal>
    
    304
    -                </goals>
    
    305
    -              </execution>
    
    306
    -            </executions>
    
    307
    -          </plugin>
    
    308
    -
    
    309
    -        </plugins>
    
    310
    -      </build>
    
    311 295
         </profile>
    
    312 296
       </profiles>
    
    313 297
     </project>