swingx-ws Maven Repository
SwingLabs is a great resource for anyone 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:
<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:
<dependency>
<groupId>org.swinglabs</groupId>
<artifactId>swingx-ws</artifactId>
<version>0.1-SNAPSHOT</version>
</dependency>
You have to add this repository to your project:
<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:
(Note: Opinions expressed in this article and its replies are the opinions of their respective authors and not those of DZone, Inc.)




