Então, estou apreendendo no spring tool suite 4, queria fazer mascaras no cadastro form usando JQuery, porém, o tag scripit de uma pagina html, parece que não funciona, como na imagem abaixo, no pol.xml está:
<dependency>
<groupId>org.webjars</groupId>
<artifactId>Semantic-UI</artifactId>
<version>2.4.1</version>
</dependency>
<dependency>
<groupId>org.webjars</groupId>
<artifactId>webjars-locator</artifactId>
<version>0.34</version>
</dependency>
<dependency>
<groupId>org.webjars</groupId>
<artifactId>bootstrap</artifactId>
<version>3.0.0</version>
</dependency>
Na pagina html
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width" />
<title>Cadastro de Pessoas</title>
<link th:href="@{/webjars/bootstrap/css/bootstrap.min.css}" rel="stylesheet"/>
<link th:href="@{/webjars/bootstrap/css/bootstrap-theme.min.css}" rel="stylesheet"/>
<script th:src="@{/webjars/jquery/jquery.min.js}"></script>
<script th:src="@{/webjars/bootstrap/js/bootstrap.min.js}"></script>
</body>
A tag script está assim:

