common
Common classes for FOKProjects
This repository holds the Maven Artifact fokprojects.common
which currently contains classes for:
- Self-Update of a java app
- Saving preferences
- Logging (using
java.util.com.github.vatbub.common.core.logging
) - Comparing version numbers
- A basic dialog to notify the user of an update
- Read config files and remote configs (in development)
Learn how to use all of this functionality, go to the wiki.
To add this artifact as a maven dependency, add the following repositories and dependency to your pom:
<dependency>
<groupId>com.github.vatbub</groupId>
<artifactId>common</artifactId>
<version>0.1.1</version>
</dependency>
Usage
Have a look at the getting started page in the wiki to learn how to use this lib.
Build the current snapshot
- Clone this repository
- Run
mvn install
Build the latest release
Repeat the steps mentioned above but switch to the release
branch by running git checkout release
prior to running mvn install
.
##Docs Maven Site, JavaDoc
Contributing
Contributions of any kind are very welcome. Just fork and submit a Pull Request and we will be happy to merge. Just keep in mind that we use Issue driven development.