How to upgrade JQuery of com.atlassian.auiplugin:ajs package

I’m developing a bamboo plugin and using Jquery from web resource in atlassian-plugin.xml like below:

<web-resource key="qtest-plugin-for-bamboo-resources" name="qtest-plugin-for-bamboo Web Resources">
    <dependency>com.atlassian.auiplugin:ajs</dependency>
    <resource type="download" name="qtest-plugin-for-bamboo.css" location="/css/qtest-plugin-for-bamboo.css"/>
    <resource type="download" name="qtest-plugin-for-bamboo.js" location="/js/qtest-plugin-for-bamboo.js"/>
    <resource type="download" name="qtest-plugin-for-bamboo-cors.js" location="/js/qtest-plugin-for-bamboo-cors.js"/>
    <resource type="download" name="images/" location="/images"/>
    <resource type="download" name="js/" location="/js"/>
    <context>qtest-plugin-for-bamboo</context>
    <context>atl.general</context>
  </web-resource>

I realized the version of JQuery is 1.10.2. I’m looking for a way to upgrade the JQuery version. How I can do that?
I’m using atlassian-bamboo-web 7.2.2 and my project created by atlas-create-bamboo-plugin command

Thanks