We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi
I couldn't get the ODF Validator dependency to resolve based on the Maven repository. It has this:
<!-- https://mvnrepository.com/artifact/org.odftoolkit/odfvalidator --> <dependency> <groupId>org.odftoolkit</groupId> <artifactId>odfvalidator</artifactId> <version>0.11.0</version> </dependency>
https://mvnrepository.com/artifact/org.odftoolkit/odfvalidator/0.11.0
I then found that the ODF Toolkit Maven repository has this:
<!-- https://mvnrepository.com/artifact/org.odftoolkit/odftoolkit --> <dependency> <groupId>org.odftoolkit</groupId> <artifactId>odftoolkit</artifactId> <version>0.11.0</version> <type>pom</type> </dependency>
https://mvnrepository.com/artifact/org.odftoolkit/odftoolkit/0.11.0
I tried to imitate this for ODF Validator, so I put in <type>pom</type> in the pom.xml dependency, and now the dependency has been resolved.
<type>pom</type>
Is this right behaviour?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi
I couldn't get the ODF Validator dependency to resolve based on the Maven repository. It has this:
https://mvnrepository.com/artifact/org.odftoolkit/odfvalidator/0.11.0
I then found that the ODF Toolkit Maven repository has this:
https://mvnrepository.com/artifact/org.odftoolkit/odftoolkit/0.11.0
I tried to imitate this for ODF Validator, so I put in
<type>pom</type>
in the pom.xml dependency, and now the dependency has been resolved.Is this right behaviour?
The text was updated successfully, but these errors were encountered: