JGoodies Forms.
The JGoodies Forms framework helps you lay out and implement elegant Swing panels quickly and consistently. It makes simple things easy and the hard stuff possible, the good design easy and the bad difficult..
Here is the list of declaration for forms. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>com.jgoodies</groupId> <artifactId>forms</artifactId> <version>1.2.0</version> </dependency>
If you think this Maven repository POM file listing for forms is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:The BSD License
URL: http://www.opensource.org/licenses/bsd-license.html.
The forms-1.2.0 has 1 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
JUnit | junit 3.8.2 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 555 |
The following table lists the most popular artifacts which are depending on forms-1.2.0. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Swing JavaFX | substance-swingx 7.0 A fork of @kirilcool's substance project | 8 |
The following plugins are used in the forms-1.2.0.jar
The following packages are defined in the forms-1.2.0.jar
com.jgoodies.forms.builder com.jgoodies.forms.debug com.jgoodies.forms.factories com.jgoodies.forms.layout com.jgoodies.forms.util
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <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"> <modelVersion>4.0.0</modelVersion> <groupId>com.jgoodies</groupId> <artifactId>forms</artifactId> <version>1.2.0</version> <packaging>jar</packaging> <name>JGoodies Forms</name> <url>https://forms.dev.java.net/</url> <description>The JGoodies Forms framework helps you lay out and implement elegant Swing panels quickly and consistently. It makes simple things easy and the hard stuff possible, the good design easy and the bad difficult. </description> <licenses> <license> <name>The BSD License</name> <url>http://www.opensource.org/licenses/bsd-license.html</url> </license> </licenses> <scm> <connection>scm:cvs:pserver:guest@cvs.dev.java.net:/cvs:forms</connection> <tag>head</tag> <url>https://forms.dev.java.net/source/browse/forms/</url> </scm> <dependencies> <!-- This library doesn't depend on any other library. --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.2</version> <scope>test</scope> </dependency> </dependencies> <distributionManagement> <repository> <id>mvnartifacts-sf.net</id> <url>sftp://web.sourceforge.net/home/groups/m/mv/mvnartifacts/htdocs/m2-repo</url> </repository> </distributionManagement> <build> <directory>${basedir}/build</directory> <sourceDirectory>${basedir}/src/core</sourceDirectory> <testSourceDirectory>${basedir}/src/test</testSourceDirectory> <outputDirectory>${basedir}/build/classes</outputDirectory> <testOutputDirectory>${basedir}/build/test-classes</testOutputDirectory> <resources> <resource> <directory>.</directory> <includes> <include>LICENSE.txt</include> <include>README.html</include> <include>RELEASE-NOTES.txt</include> </includes> </resource> </resources> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.4</source> <target>1.4</target> <debug>true</debug> <encoding>utf-8</encoding> <optimize>false</optimize> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <includes> <include>**/*Test.java</include> </includes> </configuration> </plugin> </plugins> </build> </project>