I created a new sequence in ESB config project.I am using wso2 developer studio 3.8
<sequence xmlns="http://ws.apache.org/ns/synapse" name="TestDBSequence" trace="enable">
<dbselect>
<connection>
<pool>
<dsName>jdbc/sqlserver</dsName>
</pool>
</connection>
<statement>
<sql>select si.[Name] as SKU,from [Test] si WHERE NAME = '100000051'</sql>
<result name="SKU" column="SKU"></result>
</statement>
</dbselect>
</sequence>
But when I am trying to save the sequence there is an error : Unknown synapse configuration tag.
I have the jars files for dbselect but no idea how to add in pom.xml to save it.