org.jdesktop - Swing Worker.
Mavenized build for Swing Worker from "https://swingworker.dev.java.net"..
Here is the list of declaration for swing-worker. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.jdesktop</groupId> <artifactId>swing-worker</artifactId> <version>1.1</version> </dependency>
If you think this Maven repository POM file listing for swing-worker is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The swing-worker-1.1 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 plugins are used in the swing-worker-1.1.jar
The following packages are defined in the swing-worker-1.1.jar
org.jdesktop.swingworker
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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.jdesktop</groupId> <artifactId>swing-worker</artifactId> <version>1.1</version> <packaging>jar</packaging> <name>org.jdesktop - Swing Worker</name> <description> Mavenized build for Swing Worker from "https://swingworker.dev.java.net". </description> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <inherited>true</inherited> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.2</version> <configuration> <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> </manifest> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <!--version>2.5</version--> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> <resources> <resource> <directory>${basedir}/src</directory> <filtering>false</filtering> <includes> <include>**/*.properties</include> </includes> </resource> </resources> <sourceDirectory>${basedir}/src/java</sourceDirectory> <testSourceDirectory>${basedir}/src/test</testSourceDirectory> </build> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.2</version> <scope>test</scope> </dependency> </dependencies> </project>