SwingLabs is a great resource for everyone who wants to make their java applications look as nice as possible. The main swingx-package is available in the main maven repository using this dependency:
1 2 3 4 5 | <dependency> <groupId>org.swinglabs</groupId> <artifactId>swingx</artifactId> <version>0.9.2</version> </dependency> |
But sadly Swingx-ws is missing. At the moment only weekly snapshots exist on the SwingLabs-Homepage.
Today I uploaded swingx-ws to my own little maven2 repository because it will be used in a little application I am playing with
.
You can add swingx-ws to your project with this lines:
1 2 3 4 5 | <dependency> <groupId>org.swinglabs</groupId> <artifactId>swingx-ws</artifactId> <version>0.1-SNAPSHOT</version> </dependency> |
You have to add this repository to your project:
1 2 3 4 | <repository> <id>wannawork</id> <url>http://stuff.wannawork.de/maven2</url> </repository> |
This little application is done in less than 20 Lines of Code:

Some Links about the map component:
2 Antworten auf swingx-ws Maven Repository