You can download netty-common-4.0.8.final.jar in this page.
Apache License
netty-common-4.0.8.final.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/io.netty/netty-common/pom.properties META-INF/maven/io.netty/netty-common/pom.xml io.netty.util.AbstractReferenceCounted.class io.netty.util.Attribute.class io.netty.util.AttributeKey.class io.netty.util.AttributeMap.class io.netty.util.CharsetUtil.class io.netty.util.DefaultAttributeMap.class io.netty.util.HashedWheelTimer.class io.netty.util.IllegalReferenceCountException.class io.netty.util.NetUtil.class io.netty.util.Recycler.class io.netty.util.ReferenceCountUtil.class io.netty.util.ReferenceCounted.class io.netty.util.ResourceLeak.class io.netty.util.ResourceLeakDetector.class io.netty.util.ResourceLeakException.class io.netty.util.Signal.class io.netty.util.Timeout.class io.netty.util.Timer.class io.netty.util.TimerTask.class io.netty.util.UniqueName.class io.netty.util.concurrent.AbstractEventExecutor.class io.netty.util.concurrent.AbstractEventExecutorGroup.class io.netty.util.concurrent.AbstractFuture.class io.netty.util.concurrent.BlockingOperationException.class io.netty.util.concurrent.CompleteFuture.class io.netty.util.concurrent.DefaultEventExecutor.class io.netty.util.concurrent.DefaultEventExecutorGroup.class io.netty.util.concurrent.DefaultFutureListeners.class io.netty.util.concurrent.DefaultProgressivePromise.class io.netty.util.concurrent.DefaultPromise.class io.netty.util.concurrent.DefaultThreadFactory.class io.netty.util.concurrent.EventExecutor.class io.netty.util.concurrent.EventExecutorGroup.class io.netty.util.concurrent.FailedFuture.class io.netty.util.concurrent.Future.class io.netty.util.concurrent.FutureListener.class io.netty.util.concurrent.GenericFutureListener.class io.netty.util.concurrent.GenericProgressiveFutureListener.class io.netty.util.concurrent.GlobalEventExecutor.class io.netty.util.concurrent.ImmediateEventExecutor.class io.netty.util.concurrent.ImmediateExecutor.class io.netty.util.concurrent.MultithreadEventExecutorGroup.class io.netty.util.concurrent.ProgressiveFuture.class io.netty.util.concurrent.ProgressivePromise.class io.netty.util.concurrent.Promise.class io.netty.util.concurrent.PromiseTask.class io.netty.util.concurrent.ScheduledFuture.class io.netty.util.concurrent.ScheduledFutureTask.class io.netty.util.concurrent.SingleThreadEventExecutor.class io.netty.util.concurrent.SucceededFuture.class io.netty.util.internal.ConcurrentSet.class io.netty.util.internal.EmptyArrays.class io.netty.util.internal.JavassistTypeParameterMatcherGenerator.class io.netty.util.internal.NoOpTypeParameterMatcher.class io.netty.util.internal.PendingWrite.class io.netty.util.internal.PlatformDependent.class io.netty.util.internal.PlatformDependent0.class io.netty.util.internal.ReadOnlyIterator.class io.netty.util.internal.RecyclableArrayList.class io.netty.util.internal.StringUtil.class io.netty.util.internal.SystemPropertyUtil.class io.netty.util.internal.ThreadLocalRandom.class io.netty.util.internal.TypeParameterMatcher.class io.netty.util.internal.chmv8.ConcurrentHashMapV8.class io.netty.util.internal.chmv8.CountedCompleter.class io.netty.util.internal.chmv8.ForkJoinPool.class io.netty.util.internal.chmv8.ForkJoinTask.class io.netty.util.internal.chmv8.ForkJoinWorkerThread.class io.netty.util.internal.chmv8.LongAdder.class io.netty.util.internal.chmv8.Striped64.class io.netty.util.internal.logging.AbstractInternalLogger.class io.netty.util.internal.logging.CommonsLogger.class io.netty.util.internal.logging.CommonsLoggerFactory.class io.netty.util.internal.logging.FormattingTuple.class io.netty.util.internal.logging.InternalLogLevel.class io.netty.util.internal.logging.InternalLogger.class io.netty.util.internal.logging.InternalLoggerFactory.class io.netty.util.internal.logging.JdkLogger.class io.netty.util.internal.logging.JdkLoggerFactory.class io.netty.util.internal.logging.Log4JLogger.class io.netty.util.internal.logging.Log4JLoggerFactory.class io.netty.util.internal.logging.MessageFormatter.class io.netty.util.internal.logging.Slf4JLogger.class io.netty.util.internal.logging.Slf4JLoggerFactory.class
netty-common-4.0.8.final.pom file content.
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright 2012 The Netty Project ~ ~ The Netty Project licenses this file to you under the Apache License, ~ version 2.0 (the "License"); you may not use this file except in compliance ~ with the License. You may obtain a copy of the License at: ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, software ~ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT ~ WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the ~ License for the specific language governing permissions and limitations ~ under the License. --> <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> <parent> <groupId>io.netty</groupId> <artifactId>netty-parent</artifactId> <version>4.0.8.Final</version> </parent> <artifactId>netty-common</artifactId> <packaging>bundle</packaging> <name>Netty/Common</name> <dependencies> <!-- Byte code generator - completely optional --> <dependency> <groupId>org.javassist</groupId> <artifactId>javassist</artifactId> <scope>compile</scope> <!-- override the 'test' scope defined at parent pom.xml --> <optional>true</optional> </dependency> <!-- Logging frameworks - completely optional --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <optional>true</optional> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <configuration> <instructions> <!-- enforce JVM vendor package as optional --> <Import-Package> sun.misc.*;resolution:=optional, * </Import-Package> <!-- override "internal" private package convention --> <Private-Package> !* </Private-Package> </instructions> </configuration> </plugin> </plugins> </build> </project>
<dependency> <groupId>io.netty</groupId> <artifactId>netty-common</artifactId> <version>4.0.8.final</version> </dependency>
If you think the following netty-common-4.0.8.final.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download netty-common-4.0.8.final.jar file