2. How to upgrade Squash TA framework from 1.7.0-RELEASE to 1.8.0-RELEASE?

1. Open the pom.xml file

2. Change the squash-ta-maven-plugin version from 1.7.0-RELEASE to 1.8.0-RELEASE:

<plugin>

<groupId>org.squashtest.ta</groupId>

<artifactId>squash-ta-maven-plugin</artifactId>

<version>1.8.0-RELEASE</version>

...

3. Add the following elements to the squash-ta-maven-plugin tmCallBack configurer (if you want to connect Squash TA with Squash TM):

<plugin>

<groupId>org.squashtest.ta</groupId>

<artifactId>squash-ta-maven-plugin</artifactId>

<version>1.8.0-RELEASE</version>

...


<configuration>

<configurers>

<tmCallBack>

<endpointURL>${status.update.events.url}</endpointURL>

<executionExternalId>${squash.ta.external.id} </executionExternalId>

<jobName>${jobname}</jobName>

<hostName>${hostname}</hostName>

<endpointLoginConfFile>${squash.ta.conf.file}</endpointLoginConfFile>

<reportBaseUrl>${ta.tmcallback.reportbaseurl}</reportBaseUrl>

<jobExecutionId>${ta.tmcallback.jobexecutionid}</jobExecutionId>

<reportName>${ta.tmcallback.reportname}</reportName>

</tmCallBack>

</configurers>

</configuration>