=====================
This is series of super important clues to overcome such bugs we would encounter while working with Wso2 TAF - Automation Framework ....
This is series of super important clues to overcome such bugs we would encounter while working with Wso2 TAF - Automation Framework ....
1. Errror
when building wso2 TAF if you get something like this on the console .......
diamond operator is not supported in -source 1.6
(use -source 7 or higher to enable diamond operator)
Solution
Add the maven source plugin to the pom.xml file.
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.1</version>
<inherited>true</inherited>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>