Enabling Snapshots Versions in Your Maven Project.

You need to enable snapshot versions to be able to use the UNLICENSED version of the framework. To enable the snapshot version, add the following code to your settings.xml file available at /USERHOME/.m2.

<profiles>
  <profile>
     <id>allow-snapshots</id>
        <activation><activeByDefault>true</activeByDefault></activation>
     <repositories>
       <repository>
         <id>snapshots-repo</id>
         <url>https://oss.sonatype.org/content/repositories/snapshots</url>
         <releases><enabled>false</enabled></releases>
         <snapshots><enabled>true</enabled></snapshots>
       </repository>
     </repositories>
   </profile>
</profiles>