Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Run the Readiness Utility.

  2. Go to the Readiness workspace, you will see folders Qualitia 8 and Qualitia 9. Oualitia 8 folder contains all the 8.x data and Qualitia 9 contains the migrated projects and databases.

  3. The migrated custom action projects will be with _java file name. To upgrade from Qualitia 8.x to 9.x convert the Java project to Maven using Jboss Plugin in Eclipse.

    • Open Eclipse and navigate to the Java project you want to convert. 

    • Select the project you want to convert in the "Convert to Maven Project" dialog.

    • Go to next screen.

    • Jboss screen will open where all the libraries get identified. 

    • Once done check the libraries which are unidentified except Qualitia jar. 

    • If some jars remain unidentified, add them manually. 

    • Once done click "Finish". 

    • Eclipse will generate a basic “pom.xml” file for your project. This file contains the project configuration, dependencies, and other build settings.

...

  1. Right-click on the Java project, select Configure.

  2. Hovering over Configure will show some configure options. Out of these options, click Convert to Maven Project.

  3. Clicking Convert to Maven Project will open a Maven POM window. Click Finish on this window to continue.

  4. You will see a pop-up Identify Maven Dependencies, uncheck the Qualitia jar and click Finish.

  5. You have successfully created “pom.xml” for your project and also fetched the dependencies for the jar files.

    Check your project is running without any errors before uploading it to 9.0

  6. Add 8.6 jar manually under <dependencies> and provide absolute path of the jar.

  7. Example:

    • <dependency> 

    • <groupId>net.minidev</groupId> 

    • <artifactId>accessors-smart</artifactId> 

    • <version>1.2</version>

    • <scope>system</scope>

    • <systemPath></systemPath> 

    • </dependency>

  8. Once all the dependencies are added, right-click on the project and select Run As.

  9. Selecting Run As will open a list, click on Maven clean.

  10. Now again go to the list under Run As and click Maven Built.

  11. You can move to 9.0 if the run is completed without any errors.

  12. If there are any errors, you need to resolve those to move to 9.0

    .

  13. Save the “pom.xml” file. 

  14. Open Now open the project.class file of your java project project. 

  15. Add a comment <comment>maven</comment> Close comment> and close the pojects.json file file. 

  16. Now Install qualitia Qualitia 9.0 server (All steps as per fresh install) 

  17. Launch server portal  

  18. Click on Update project tab 

  19. Click on Update button 

  20. Activate license 

  21. Download client form server portal 

  22. Install client  

  23. Login to qualitia 9.0Server. Refer Installation and Setup for more details.

  24. Launch server portal and click Update project tab. 

  25. Click Update

  26. Activate the license. 

  27. Download QAS - Client form the server portal. Refer Installation and Setup for more details.

  28. Once QAS - Client installation is complete login to Qualitia 9.0.

Install Jboss Plugin in Eclipse

...