I tried creating a new Maven project, disabling/enabling Maven nature, Maven Update Project, full clean and build, still no luck. 
The only dependency that Maven is downloading is docx4j-3.1.0.jar, not the transitive ones.
Bellow is my pom.xml:
- Code: Select all
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>docx4jtestproject</groupId>
    <artifactId>docx4jtestproject</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>docx4jtestproject</name>
    <description>docx4jtestproject</description>
    <build>
        <plugins>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.1</version>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
            </plugin>
        </plugins>
    </build>
    <dependencies>
        <dependency>
            <groupId>org.docx4j</groupId>
            <artifactId>docx4j</artifactId>
            <version>3.1.0</version>
            <scope>compile</scope>
        </dependency>
    </dependencies>
</project>