JCommon 2.0.1 release.
Integration
JCommon can be used as a Maven dependency or as a standalone library.
Maven
JCommon is available at Maven Central.
To import the library, add the following parts to the maven project:
<!-- You can update the properties section with Jeometry version -->
<properties>
<jcommon.version>2.0.1</jcommon.version>
</properties>
<!-- The JCommon core module that contains basics utilities -->
<dependency>
<groupId>org.jorigin</groupId>
<artifactId>jcommon-core</artifactId>
<version>${jcommon.version}</version>
</dependency>
<!-- (Optional) The JCommon module dedicated to JavaFX -->
<dependency>
<groupId>org.jorigin</groupId>
<artifactId>jcommon-jfx</artifactId>
<version>${jcommon.version}</version>
</dependency>
<!-- (Optional) The JCommon module dedicated to SWING -->
<dependency>
<groupId>org.jorigin</groupId>
<artifactId>jcommon-swing</artifactId>
<version>${jcommon.version}</version>
</dependency>Standalone
JCommon can be used as standalone library by integrating the jars provided to the classpath.
Changelog
Change
- [BUG] JCommon 2.0.0 was inconsistent due to missmatch beetween JAR versions.