Installation
Contents
[
Hide
]
Aspose.OMR for Java is hosted in the Maven repository. You can easily use it directly in your Maven Projects with minimal configuration. There is no need to download and install any additional software - the package is self-contained.
Configuring the repository
Specify Aspose Maven Repository location by adding the following lines to your Maven pom.xml configuration file:
<repositories>
<repository>
<id>AsposeJavaAPI</id>
<name>Aspose Java API</name>
<url>https://releases.aspose.com/java/repo/</url>
</repository>
</repositories>
Dependencies
Specify the minimal required dependencies for Aspose.OMR for Java package. Add the following lines to your Maven pom.xml configuration file:
<dependency>
<groupId>com.aspose</groupId>
<artifactId>aspose-omr</artifactId>
<version>23.5</version>
<classifier>jdk6</classifier>
</dependency>
<dependency>
<groupId>com.aspose</groupId>
<artifactId>aspose-omr</artifactId>
<version>23.5</version>
<classifier>javadoc</classifier>
</dependency>
Do not forget to change the version number to the current version of the Aspose.OMR for Java package. View the Release Notes for the latest changes, improvements, bug fixes, and backward compatibility information.