Skip to content

andyrozman/atech-tools

Repository files navigation

Release

GitHub Actions Workflow Status

Atech-Tools

ATech Tools (library for help with development in Java). From 4th April 2024 this repository contains only Java code, all other platforms were removed. You can find them all in atech-tools-all repository, if needed.

Origins

This is helper library I was implementing since I started working in Java (back on 2000).

History

This repository was hosted on sourceforge.net for quite a while and it moved from different types of repositories (CVS -> SVN -> GIT) and now its been moved her, because of much better availability and build options support.

History of changes

In last few years (last 15 or so) I worked mostly on java part, so all changes can be found in file docs/Changes.txt.

Building

This is simple java project with maven build, so it can be rebuild very easilly...

Usage

Add following repository:

    <repositories>
		<repository>
		    <id>jitpack.io</id>
		    <url>https://jitpack.io</url>
		</repository>
	</repositories>

And then following dependency in your code (change 0.8.7 with latest version - see badge on top of this document):

	<dependency>
	    <groupId>com.atech-software</groupId>
	    <artifactId>atech-tools</artifactId>
	    <version>0.8.7</version>
	</dependency>