You can download jboss-threads-2.2.1.final.jar in this page.
Open Source License
jboss-threads-2.2.1.final.jar file has the following types.
META-INF/INDEX.LIST META-INF/MANIFEST.MF META-INF/maven/org.jboss.threads/jboss-threads/pom.properties META-INF/maven/org.jboss.threads/jboss-threads/pom.xml org.jboss.threads.ArrayQueue.class org.jboss.threads.AsyncCancellable.class org.jboss.threads.AsyncFuture.class org.jboss.threads.AsyncFutureTask.class org.jboss.threads.AtomicArray.class org.jboss.threads.BalancingExecutor.class org.jboss.threads.BlockingExecutor.class org.jboss.threads.BlockingExecutorService.class org.jboss.threads.CleanupExecutor.class org.jboss.threads.CompositeTask.class org.jboss.threads.ContextClassLoaderExecutor.class org.jboss.threads.ContextClassLoaderSavingRunnable.class org.jboss.threads.DelegatingBlockingExecutor.class org.jboss.threads.DelegatingBlockingExecutorService.class org.jboss.threads.DelegatingDirectBlockingExecutor.class org.jboss.threads.DelegatingDirectExecutor.class org.jboss.threads.DelegatingDirectExecutorService.class org.jboss.threads.DelegatingExecutor.class org.jboss.threads.DelegatingExecutorService.class org.jboss.threads.DelegatingRunnable.class org.jboss.threads.DelegatingScheduledExecutorService.class org.jboss.threads.DelegatingWrappedExecutor.class org.jboss.threads.DelegatingWrappingExecutor.class org.jboss.threads.Dependency.class org.jboss.threads.DependencyTaskBuilder.class org.jboss.threads.DirectExecutor.class org.jboss.threads.DirectExecutorService.class org.jboss.threads.DiscardingExecutor.class org.jboss.threads.EventListener.class org.jboss.threads.ExceptionLoggingExecutor.class org.jboss.threads.ExecutionInterruptedException.class org.jboss.threads.ExecutionTimedOutException.class org.jboss.threads.ExecutorTask.class org.jboss.threads.HandoffRejectedExecutionHandler.class org.jboss.threads.InitializingExecutor.class org.jboss.threads.InterruptHandler.class org.jboss.threads.JBossExecutors.class org.jboss.threads.JBossScheduledThreadPoolExecutor.class org.jboss.threads.JBossThread.class org.jboss.threads.JBossThreadFactory.class org.jboss.threads.JBossThreadPoolExecutor.class org.jboss.threads.LimitedExecutor.class org.jboss.threads.LoggingUncaughtExceptionHandler.class org.jboss.threads.NotifyingDirectExecutor.class org.jboss.threads.NotifyingRunnable.class org.jboss.threads.NullRunnable.class org.jboss.threads.OrderedExecutor.class org.jboss.threads.PrivilegedExecutor.class org.jboss.threads.QueueExecutor.class org.jboss.threads.QueuelessExecutor.class org.jboss.threads.RejectingExecutor.class org.jboss.threads.ShutdownListenable.class org.jboss.threads.SimpleDirectExecutor.class org.jboss.threads.SimpleLock.class org.jboss.threads.SimpleShutdownListenable.class org.jboss.threads.StoppedExecutorException.class org.jboss.threads.TaskNotifier.class org.jboss.threads.ThreadCreationException.class org.jboss.threads.ThreadFactoryExecutor.class org.jboss.threads.ThreadFormattedNameExecutor.class org.jboss.threads.ThreadLocalResetter.class org.jboss.threads.ThreadNameExecutor.class org.jboss.threads.ThreadNameInfo.class org.jboss.threads.ThreadNameNotatingExecutor.class org.jboss.threads.UninterruptibleExecutor.class org.jboss.threads.WrappingExecutor.class org.jboss.threads.WrappingThreadFactory.class org.jboss.threads.management.BoundedQueueThreadPoolExecutorMBean.class org.jboss.threads.management.BoundedThreadPoolExecutorMBean.class org.jboss.threads.management.ThreadExecutorMBean.class org.jboss.threads.management.ThreadPoolExecutorMBean.class
jboss-threads-2.2.1.final.pom file content.
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ JBoss, Home of Professional Open Source. ~ Copyright 2010, Red Hat Middleware LLC, and individual contributors ~ as indicated by the @author tags. See the copyright.txt file in the ~ distribution for a full listing of individual contributors. ~ ~ This is free software; you can redistribute it and/or modify it ~ under the terms of the GNU Lesser General Public License as ~ published by the Free Software Foundation; either version 2.1 of ~ the License, or (at your option) any later version. ~ ~ This software is distributed in the hope that it will be useful, ~ but WITHOUT ANY WARRANTY; without even the implied warranty of ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ~ Lesser General Public License for more details. ~ ~ You should have received a copy of the GNU Lesser General Public ~ License along with this software; if not, write to the Free ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org. --> <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.jboss.threads</groupId> <artifactId>jboss-threads</artifactId> <packaging>jar</packaging> <version>2.2.1.Final</version> <name>JBoss Threads</name> <parent> <groupId>org.jboss</groupId> <artifactId>jboss-parent</artifactId> <version>13</version> </parent> <dependencies> <dependency> <groupId>org.jboss.logging</groupId> <artifactId>jboss-logging-annotations</artifactId> <version>1.2.0.Final</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.jboss.logging</groupId> <artifactId>jboss-logging-processor</artifactId> <version>1.2.0.Final</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.jboss.logging</groupId> <artifactId>jboss-logging</artifactId> <version>3.1.3.GA</version> <scope>provided</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestSections> <manifestSection> <name>org/jboss/threads</name> <manifestEntries> <Sealed>true</Sealed> </manifestEntries> </manifestSection> </manifestSections> </archive> </configuration> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <doclet>net.gleamynode.apiviz.APIviz</doclet> <docletArtifact> <groupId>org.jboss.apiviz</groupId> <artifactId>apiviz</artifactId> <version>1.3.2.GA</version> </docletArtifact> </configuration> </plugin> </plugins> </build> </project>
<dependency> <groupId>org.jboss.threads</groupId> <artifactId>jboss-threads</artifactId> <version>2.2.1.final</version> </dependency>
If you think the following jboss-threads-2.2.1.final.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download jboss-threads-2.2.1.final.jar file