Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Most up-to-date version of the java "Clearthought" TableLayout project

What is the status of the java "Clearthought" TableLayout project?

is it still being maintained?

what is its most up-to-date website?

old page: http://www.clearthought.info/sun/products/jfc/tsc/articles/tablelayout/

not working: https://tablelayout.dev.java.net/

maven repository with 2005 version: http://mvnrepository.com/artifact/tablelayout/TableLayout/20050920

any other more up-to-date page?

like image 438
David Portabella Avatar asked Feb 16 '23 16:02

David Portabella


1 Answers

It seems that the author abandoned the project. So I decided to bring it back to life: change the build system from ant to maven, split the project into core code and examples, etc.

Maven coordinates of the latest version:

<dependency>
  <groupId>info.clearthought</groupId>
  <artifactId>table-layout</artifactId>
  <version>4.2</version>
</dependency>

This release is completely identical to the last old release in Maven Central with exception of 2 bugfixes.

You can check this for more information. Feel free to contribute or improve

like image 161
nerro Avatar answered Apr 09 '23 17:04

nerro