How To Get It

The NOTUVY Utilities (notuvyutil) project is built with maven. Because it is a library, it can be either downloaded directly and manually installed in your project, or it can be automatically downloaded and installed if you are using maven yourself.

Direct Download

Click here to get the latest version of the jar file from the Sourceforge file release system.

Maven Dependency

Simply add the following to your project pom.xml and you will get the specified version and it will be immediately available to your project. The latest jar is always deployed to Maven Central, so your maven project will know where to get it from.

Note that you can direct it to always use the "LATEST" released version, or you can depend on a specific version (e.g. "0.0.3").

</project>
  ...
  <dependencies>
    ...
    <dependency>
      <groupId>com.notuvy</groupId>
      <artifactId>notuvyutil</artifactId>
      <version>LATEST</version>
      <scope>compile</scope>
    </dependency>
    ...
  <dependencies>
  ...
</project>

Project Overview