Add this to pom.xml
<dependency>
<groupId>org.crosswire</groupId>
<artifactId>jsword</artifactId>
<version>2.2</version>
</dependency>Create a settings.xml with the following content
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
http://maven.apache.org/xsd/settings-1.0.0.xsd">
<profiles>
<profile>
<id>github</id>
<repositories>
<repository>
<id>central</id>
<url>https://repo1.maven.org/maven2</url>
</repository>
<repository>
<id>github</id>
<url>https://maven.pkg.github.com/clausnz/*</url>
</repository>
</repositories>
</profile>
</profiles>
</settings>