Template Render dependency NOT WORKING

Hello,

I’m following this tutorial for make an Admin Configuration Form in my plugin, but when I add the dependency to my Pom, I can’t enable the plugin.

I tried to use differents versions, but still not working.

<dependency>
  <groupId>com.atlassian.templaterenderer</groupId>
  <artifactId>atlassian-template-renderer-api</artifactId>
  <version>2.0.0</version>
  <scope>provided</scope>
</dependency>

I use this sal dependency too, It works fine

<dependency>
    <groupId>com.atlassian.sal</groupId>
    <artifactId>sal-api</artifactId>
    <version>3.1.0</version>
    <scope>provided</scope>
</dependency>

There is the link of the Atlassian Tutorial:

https://developer.atlassian.com/server/framework/atlassian-sdk/creating-an-admin-configuration-form/