I would like to include a Maven dependency on the apache commons-text project. I tried adding this dependency to my pom:
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-text</artifactId>
<version>0.1-SNAPSHOT</version>
</dependency>
And including the following repository:
<repository>
<id>apache_snapshots_repo</id>
<url>http://repository.apache.org/snapshots</url>
<releases><enabled>false</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
</repository>
I took that repository from the Dependency Repository Locations section of the documentation of commons-text. However, still the dependency cannot be resolved by maven.
So which is the right dependency & repository I should configure in order to work with Apache commons-text ?