Maven Repository - POM file for Swing JavaFX swingx 1.6.1 1.6.1

Summary

SwingX.

Contains extensions to the Swing GUI toolkit, including new and enhanced components that provide functionality commonly required by rich client applications..

Declaration

Here is the list of declaration for swingx. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>org.swinglabs</groupId>
   <artifactId>swingx</artifactId>
   <version>1.6.1</version>
</dependency>

If you think this Maven repository POM file listing for swingx is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.





License

Name:Lesser General Public License (LGPL)
URL: http://www.gnu.org/copyleft/lesser.html.

Plugin

The following plugins are used in the swingx-1.6.1.jar

  1. maven-gpg-plugin

Packages

The following packages are defined in the swingx-1.6.1.jar

org.jdesktop.beans
org.jdesktop.swingx
org.jdesktop.swingx.action
org.jdesktop.swingx.auth
org.jdesktop.swingx.autocomplete
org.jdesktop.swingx.autocomplete.workarounds
org.jdesktop.swingx.border
org.jdesktop.swingx.calendar
org.jdesktop.swingx.color
org.jdesktop.swingx.combobox
org.jdesktop.swingx.decorator
org.jdesktop.swingx.error
org.jdesktop.swingx.event
org.jdesktop.swingx.geom
org.jdesktop.swingx.graphics
org.jdesktop.swingx.hyperlink
org.jdesktop.swingx.icon
org.jdesktop.swingx.image
org.jdesktop.swingx.multislider
org.jdesktop.swingx.multisplitpane
org.jdesktop.swingx.painter
org.jdesktop.swingx.painter.effects
org.jdesktop.swingx.plaf
org.jdesktop.swingx.plaf.basic
org.jdesktop.swingx.plaf.basic.core
org.jdesktop.swingx.plaf.linux
org.jdesktop.swingx.plaf.macosx
org.jdesktop.swingx.plaf.metal
org.jdesktop.swingx.plaf.misc
org.jdesktop.swingx.plaf.motif
org.jdesktop.swingx.plaf.nimbus
org.jdesktop.swingx.plaf.synth
org.jdesktop.swingx.plaf.windows
org.jdesktop.swingx.prompt
org.jdesktop.swingx.renderer
org.jdesktop.swingx.rollover
org.jdesktop.swingx.search
org.jdesktop.swingx.sort
org.jdesktop.swingx.table
org.jdesktop.swingx.tips
org.jdesktop.swingx.tree
org.jdesktop.swingx.treetable
org.jdesktop.swingx.util




POM File Source

Here is the content of the POM file.

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  <parent>
    <groupId>org.sonatype.oss</groupId>
    <artifactId>oss-parent</artifactId>
    <version>3</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.swinglabs</groupId>
  <artifactId>swingx</artifactId>
  <packaging>jar</packaging>
  <name>SwingX</name>
  <version>1.6.1</version>
    <url>http://www.swinglabs.org/</url>
    <licenses>
        <license>
            <name>Lesser General Public License (LGPL)</name>
            <url>http://www.gnu.org/copyleft/lesser.html</url>
        </license>
    </licenses>
    <issueManagement>
      <system>Bugzilla</system>
      <url>https://swingx.dev.java.net/issues/</url>
    </issueManagement>
    <scm>
        <connection>scm:svn:https://swingx.dev.java.net/svn/swingx/trunk</connection>
        <developerConnection>scm:svn:https://swingx.dev.java.net/svn/swingx/trunk</developerConnection>
        <url>https://swingx.dev.java.net/source/browse/swingx/</url>
    </scm>
    <description>Contains extensions to the Swing GUI toolkit, including new and enhanced components that provide functionality commonly required by rich client applications.</description>
    <dependencies>
    <dependency>
      <groupId>com.jhlabs</groupId>
      <artifactId>filters</artifactId>
      <version>2.0.235</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
            <groupId>org.swinglabs</groupId>
            <artifactId>swing-worker</artifactId>
            <version>1.1</version>
            <scope>compile</scope>
        </dependency>
  </dependencies>
    <!--distributionManagement>
        <repository>
            <id>swinglabs-staging</id>
            <name>SwingLabs Release Repository</name>
            <url>http://oss.sonatype.org/content/repositories/swinglabs-with-staging/</url>
        </repository>
        <snapshotRepository>
            <id>swinglabs-snapshots</id>
            <name>SwingLabs Snapshot Repository</name>
            <url>http://oss.sonatype.org/content/repositories/swinglabs-snapshots/</url>
        </snapshotRepository>
    </distributionManagement-->
    <build>  
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-gpg-plugin</artifactId>
        <executions>
          <execution>
            <id>sign-artifacts</id>
            <phase>verify</phase>
            <goals>
              <goal>sign</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
    </build>
    <repositories>
        <repository>
            <id>swinglabs-snapshots</id>
            <url>http://oss.sonatype.org/content/repositories/swinglabs-snapshots/</url>
            <releases>
              <enabled>false</enabled>
            </releases>
            <snapshots>
              <enabled>true</enabled>
            </snapshots>
        </repository>
        <repository>
            <id>swinglabs-snapshots</id>
            <url>http://oss.sonatype.org/content/repositories/swinglabs-releases/</url>
            <releases>
              <enabled>true</enabled>
            </releases>
            <snapshots>
              <enabled>false</enabled>
            </snapshots>
        </repository>
    </repositories>
</project>