组织ID: |
org.jboss.netty |
项目ID: |
netty |
版本: |
3.0.0.CR1 |
最后修改时间: |
2018-08-13 09:33:03 |
包类型: |
jar |
标题: |
The Netty Project |
描述: |
The Netty project is an effort to provide an asynchronous / event-driven network application framework for rapid development of high-performance / high-scalability protocol servers and clients, including its related out-of-the-box protocol extensions and tool suite.
|
相关URL: |
http://www.jboss.org/netty/ |
大小: |
247.07KB |
|
Maven引入代码: |
<dependency>
<groupId>org.jboss.netty</groupId>
<artifactId>netty</artifactId>
<version>3.0.0.CR1</version>
</dependency>
|
Gradle引入代码: |
org.jboss.netty:netty:3.0.0.CR1
|
下载Jar包: |
|
POM文件内容: |
<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>org.jboss.netty</groupId>
<artifactId>netty</artifactId>
<version>3.0.0.CR1</version>
<packaging>bundle</packaging>
<name>The Netty Project</name>
<description>
The Netty project is an effort to provide an asynchronous / event-driven network application framework for rapid development of high-performance / high-scalability protocol servers and clients, including its related out-of-the-box protocol extensions and tool suite.
</description>
<url>http://www.jboss.org/netty/</url>
<organization>
<name>JBoss - a division of Red Hat</name>
<url>http://www.jboss.org/</url>
</organization>
<inceptionYear>2008</inceptionYear>
<licenses>
<license>
<name>GNU Lesser General Public License</name>
<url>http://www.gnu.org/licenses/lgpl.html</url>
</license>
</licenses>
<scm>
<connection>scm:svn:http://anonsvn.jboss.org/repos/netty/tags/netty-3.0.0.CR1</connection>
<developerConnection>scm:svn:https://svn.jboss.org/repos/netty/tags/netty-3.0.0.CR1</developerConnection>
</scm>
<repositories>
<repository>
<id>apiviz.release</id>
<name>APIviz releases</name>
<url>http://apiviz.googlecode.com/svn/site/repo/mvn/release</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>jboss.release</id>
<name>JBoss releases</name>
<url>http://repository.jboss.org/maven2</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<distributionManagement>
<repository>
<id>repository.jboss.org</id>
<name>JBoss.org Release Distribution Repository</name>
<url>https://svn.jboss.org/repos/repository.jboss.org/maven2</url>
</repository>
<snapshotRepository>
<id>snapshots.jboss.org</id>
<name>JBoss.org Development Snapshot Repository</name>
<url>https://snapshots.jboss.org/maven2</url>
</snapshotRepository>
</distributionManagement>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.5.2</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.1.1</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.jboss.logging</groupId>
<artifactId>jboss-logging-spi</artifactId>
<version>2.0.5.GA</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.15</version>
<scope>compile</scope>
<optional>true</optional>
<exclusions>
<exclusion>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
</exclusion>
<exclusion>
<groupId>javax.jms</groupId>
<artifactId>jms</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.jdmk</groupId>
<artifactId>jmxtools</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.jmx</groupId>
<artifactId>jmxri</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.4</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<encoding>UTF-8</encoding>
<source>1.5</source>
<target>1.5</target>
<debug>true</debug>
<optimize>true</optimize>
<showDeprecations>true</showDeprecations>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<executions>
<execution>
<id>run-pmd</id>
<phase>compile</phase>
<goals>
<goal>check</goal>
<goal>cpd-check</goal>
</goals>
</execution>
</executions>
<configuration>
<sourceEncoding>UTF-8</sourceEncoding>
<targetJdk>1.5</targetJdk>
<failOnViolation>false</failOnViolation>
<linkXRef>false</linkXRef>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/Abstract*</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<executions>
<execution>
<id>run-coverage-test</id>
<phase>test</phase>
<goals>
<goal>cobertura</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-SymbolicName>${project.groupId}</Bundle-SymbolicName>
<Bundle-DocURL>${project.url}</Bundle-DocURL>
<Export-Package>!${project.groupId}.util.*,${project.groupId}.*</Export-Package>
<Private-Package>${project.groupId}.util.*</Private-Package>
<Import-Package>org.slf4j.*;resolution:=optional,org.apache.commons.logging.*;resolution:=optional,org.jboss.logging.*;resolution:=optional,org.apache.log4j.*;resolution:=optional,*</Import-Package>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-source</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadoc</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<doclet>net.gleamynode.apiviz.APIviz</doclet>
<docletArtifact>
<groupId>net.gleamynode.apiviz</groupId>
<artifactId>apiviz</artifactId>
<version>1.1.3</version>
</docletArtifact>
<aggregate>true</aggregate>
<additionalparam>
-charset UTF-8
-docencoding UTF-8
-version
-author
-breakiterator
-windowtitle "${project.name} ${project.version} API Reference"
-doctitle "${project.name} ${project.version} API Reference"
-bottom "Copyright 漏 ${project.inceptionYear}-Present ${project.organization.name}. All Rights Reserved."
-link http://java.sun.com/javase/6/docs/api/
-group "Low-level data representation" ${project.groupId}.buffer*
-group "Central interface for all I/O operations" ${project.groupId}.channel*
-group "Client & Server bootstrapping utilities" ${project.groupId}.bootstrap*
-group "Reusable I/O event interceptors" ${project.groupId}.handler*
-group "Miscellaneous" ${project.groupId}.logging*
</additionalparam>
<encoding>UTF-8</encoding>
<locale>en_US</locale>
<excludePackageNames>${project.groupId}.example*:${project.groupId}.util*</excludePackageNames>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<configuration>
<inputEncoding>UTF-8</inputEncoding>
<outputEncoding>UTF-8</outputEncoding>
<linkJavadoc>false</linkJavadoc>
</configuration>
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>add-license</id>
<phase>package</phase>
<configuration>
<tasks>
<taskdef resource="net/sf/antcontrib/antlib.xml" />
<if>
<or>
<equals arg1="${project.packaging}" arg2="jar" />
<equals arg1="${project.packaging}" arg2="bundle" />
</or>
<then>
<move file="${project.build.directory}/${project.build.finalName}.jar" tofile="${project.build.directory}/${project.build.finalName}.orig.jar" />
<zip destfile="${project.build.directory}/${project.build.finalName}.jar">
<zipfileset dir="${basedir}" prefix="META-INF/">
<include name="LICENSE.*" />
<include name="NOTICE.*" />
</zipfileset>
<zipfileset src="${project.build.directory}/${project.build.finalName}.orig.jar" filemode="644" dirmode="755">
<exclude name="*/*/*/example/**" />
</zipfileset>
</zip>
<delete file="${project.build.directory}/${project.build.finalName}.orig.jar" />
<move file="${project.build.directory}/${project.build.finalName}-sources.jar" tofile="${project.build.directory}/${project.build.finalName}-sources.orig.jar" />
<zip destfile="${project.build.directory}/${project.build.finalName}-sources.jar">
<zipfileset dir="${basedir}" prefix="META-INF/">
<include name="LICENSE.*" />
<include name="NOTICE.*" />
</zipfileset>
<zipfileset src="${project.build.directory}/${project.build.finalName}-sources.orig.jar" filemode="644" dirmode="755">
<exclude name="*/*/*/example/**" />
</zipfileset>
</zip>
<delete file="${project.build.directory}/${project.build.finalName}-sources.orig.jar" />
<move file="${project.build.directory}/${project.build.finalName}-javadoc.jar" tofile="${project.build.directory}/${project.build.finalName}-javadoc.orig.jar" />
<zip destfile="${project.build.directory}/${project.build.finalName}-javadoc.jar">
<zipfileset dir="${basedir}" prefix="META-INF/">
<include name="LICENSE.*" />
<include name="NOTICE.*" />
</zipfileset>
<zipfileset src="${project.build.directory}/${project.build.finalName}-javadoc.orig.jar" filemode="644" dirmode="755" />
</zip>
<delete file="${project.build.directory}/${project.build.finalName}-javadoc.orig.jar" />
</then>
</if>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>ant-contrib</groupId>
<artifactId>ant-contrib</artifactId>
<version>1.0b2</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>attach-distribution</id>
<phase>package</phase>
<goals>
<goal>attached</goal>
</goals>
</execution>
</executions>
<configuration>
<descriptors>
<descriptor>${basedir}/src/assembly/default.xml</descriptor>
</descriptors>
<appendAssemblyId>true</appendAssemblyId>
<tarLongFileMode>gnu</tarLongFileMode>
</configuration>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<tagBase>
https://svn.jboss.org/repos/netty/tags
</tagBase>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
</plugins>
</reporting>
</project>
|
Jar包内容: |
META-INF/LICENSE.commons-logging.txt
META-INF/LICENSE.jboss-logging.txt
META-INF/LICENSE.log4j.txt
META-INF/LICENSE.slf4j.txt
META-INF/LICENSE.txt
META-INF/NOTICE.txt
META-INF/MANIFEST.MF
META-INF/maven/org.jboss.netty/netty/pom.properties
META-INF/maven/org.jboss.netty/netty/pom.xml
org.jboss.netty.bootstrap.Bootstrap.class
org.jboss.netty.bootstrap.ClientBootstrap$Connector.class
org.jboss.netty.bootstrap.ClientBootstrap.class
org.jboss.netty.bootstrap.ServerBootstrap$Binder.class
org.jboss.netty.bootstrap.ServerBootstrap.class
org.jboss.netty.buffer.AbstractChannelBuffer.class
org.jboss.netty.buffer.BigEndianHeapChannelBuffer.class
org.jboss.netty.buffer.ByteBufferBackedChannelBuffer.class
org.jboss.netty.buffer.ChannelBuffer.class
org.jboss.netty.buffer.ChannelBufferIndexFinder$1.class
org.jboss.netty.buffer.ChannelBufferIndexFinder$10.class
org.jboss.netty.buffer.ChannelBufferIndexFinder$2.class
org.jboss.netty.buffer.ChannelBufferIndexFinder$3.class
org.jboss.netty.buffer.ChannelBufferIndexFinder$4.class
org.jboss.netty.buffer.ChannelBufferIndexFinder$5.class
org.jboss.netty.buffer.ChannelBufferIndexFinder$6.class
org.jboss.netty.buffer.ChannelBufferIndexFinder$7.class
org.jboss.netty.buffer.ChannelBufferIndexFinder$8.class
org.jboss.netty.buffer.ChannelBufferIndexFinder$9.class
org.jboss.netty.buffer.ChannelBufferIndexFinder.class
org.jboss.netty.buffer.ChannelBufferInputStream.class
org.jboss.netty.buffer.ChannelBufferOutputStream.class
org.jboss.netty.buffer.ChannelBuffers.class
org.jboss.netty.buffer.CompositeChannelBuffer.class
org.jboss.netty.buffer.DuplicatedChannelBuffer.class
org.jboss.netty.buffer.DynamicChannelBuffer.class
org.jboss.netty.buffer.HeapChannelBuffer.class
org.jboss.netty.buffer.LittleEndianHeapChannelBuffer.class
org.jboss.netty.buffer.ReadOnlyChannelBuffer.class
org.jboss.netty.buffer.SlicedChannelBuffer.class
org.jboss.netty.buffer.TruncatedChannelBuffer.class
org.jboss.netty.buffer.WrappedChannelBuffer.class
org.jboss.netty.channel.AbstractChannel.class
org.jboss.netty.channel.AbstractChannelSink.class
org.jboss.netty.channel.AbstractServerChannel.class
org.jboss.netty.channel.Channel.class
org.jboss.netty.channel.ChannelConfig.class
org.jboss.netty.channel.ChannelDownstreamHandler.class
org.jboss.netty.channel.ChannelEvent.class
org.jboss.netty.channel.ChannelException.class
org.jboss.netty.channel.ChannelFactory.class
org.jboss.netty.channel.ChannelFuture.class
org.jboss.netty.channel.ChannelFutureListener$1.class
org.jboss.netty.channel.ChannelFutureListener.class
org.jboss.netty.channel.ChannelHandler.class
org.jboss.netty.channel.ChannelHandlerContext.class
org.jboss.netty.channel.ChannelPipeline.class
org.jboss.netty.channel.ChannelPipelineCoverage.class
org.jboss.netty.channel.ChannelPipelineException.class
org.jboss.netty.channel.ChannelPipelineFactory.class
org.jboss.netty.channel.ChannelSink.class
org.jboss.netty.channel.ChannelState.class
org.jboss.netty.channel.ChannelStateEvent.class
org.jboss.netty.channel.ChannelUpstreamHandler.class
org.jboss.netty.channel.Channels$1.class
org.jboss.netty.channel.Channels.class
org.jboss.netty.channel.ChildChannelStateEvent.class
org.jboss.netty.channel.CompleteChannelFuture.class
org.jboss.netty.channel.DefaultChannelEvent.class
org.jboss.netty.channel.DefaultChannelFuture.class
org.jboss.netty.channel.DefaultChannelPipeline$1.class
org.jboss.netty.channel.DefaultChannelPipeline$DefaultChannelHandlerContext.class
org.jboss.netty.channel.DefaultChannelPipeline.class
org.jboss.netty.channel.DefaultChannelStateEvent$1.class
org.jboss.netty.channel.DefaultChannelStateEvent.class
org.jboss.netty.channel.DefaultChildChannelStateEvent.class
org.jboss.netty.channel.DefaultExceptionEvent.class
org.jboss.netty.channel.DefaultMessageEvent.class
org.jboss.netty.channel.ExceptionEvent.class
org.jboss.netty.channel.FailedChannelFuture.class
org.jboss.netty.channel.MessageEvent.class
org.jboss.netty.channel.SimpleChannelHandler$1.class
org.jboss.netty.channel.SimpleChannelHandler.class
org.jboss.netty.channel.SucceededChannelFuture.class
org.jboss.netty.channel.socket.ClientSocketChannelFactory.class
org.jboss.netty.channel.socket.DefaultServerSocketChannelConfig.class
org.jboss.netty.channel.socket.DefaultSocketChannelConfig.class
org.jboss.netty.channel.socket.ServerSocketChannel.class
org.jboss.netty.channel.socket.ServerSocketChannelConfig.class
org.jboss.netty.channel.socket.ServerSocketChannelFactory.class
org.jboss.netty.channel.socket.SocketChannel.class
org.jboss.netty.channel.socket.SocketChannelConfig.class
org.jboss.netty.channel.socket.nio.DefaultNioSocketChannelConfig.class
org.jboss.netty.channel.socket.nio.DefaultReceiveBufferSizePredictor.class
org.jboss.netty.channel.socket.nio.NioAcceptedSocketChannel.class
org.jboss.netty.channel.socket.nio.NioClientSocketChannel.class
org.jboss.netty.channel.socket.nio.NioClientSocketChannelFactory.class
org.jboss.netty.channel.socket.nio.NioClientSocketPipelineSink$1.class
org.jboss.netty.channel.socket.nio.NioClientSocketPipelineSink$2.class
org.jboss.netty.channel.socket.nio.NioClientSocketPipelineSink$Boss.class
org.jboss.netty.channel.socket.nio.NioClientSocketPipelineSink.class
org.jboss.netty.channel.socket.nio.NioServerSocketChannel.class
org.jboss.netty.channel.socket.nio.NioServerSocketChannelFactory.class
org.jboss.netty.channel.socket.nio.NioServerSocketPipelineSink$1.class
org.jboss.netty.channel.socket.nio.NioServerSocketPipelineSink$Boss.class
org.jboss.netty.channel.socket.nio.NioServerSocketPipelineSink.class
org.jboss.netty.channel.socket.nio.NioSocketChannel.class
org.jboss.netty.channel.socket.nio.NioSocketChannelConfig.class
org.jboss.netty.channel.socket.nio.NioWorker.class
org.jboss.netty.channel.socket.nio.ReceiveBufferSizePredictor.class
org.jboss.netty.channel.socket.oio.OioAcceptedSocketChannel.class
org.jboss.netty.channel.socket.oio.OioClientSocketChannel.class
org.jboss.netty.channel.socket.oio.OioClientSocketChannelFactory.class
org.jboss.netty.channel.socket.oio.OioClientSocketPipelineSink$1.class
org.jboss.netty.channel.socket.oio.OioClientSocketPipelineSink$2.class
org.jboss.netty.channel.socket.oio.OioClientSocketPipelineSink.class
org.jboss.netty.channel.socket.oio.OioServerSocketChannel.class
org.jboss.netty.channel.socket.oio.OioServerSocketChannelFactory.class
org.jboss.netty.channel.socket.oio.OioServerSocketPipelineSink$1.class
org.jboss.netty.channel.socket.oio.OioServerSocketPipelineSink$Boss.class
org.jboss.netty.channel.socket.oio.OioServerSocketPipelineSink.class
org.jboss.netty.channel.socket.oio.OioSocketChannel.class
org.jboss.netty.channel.socket.oio.OioWorker.class
org.jboss.netty.handler.codec.frame.DelimiterBasedFrameDecoder.class
org.jboss.netty.handler.codec.frame.Delimiters.class
org.jboss.netty.handler.codec.frame.FixedLengthFrameDecoder.class
org.jboss.netty.handler.codec.frame.FrameDecoder.class
org.jboss.netty.handler.codec.frame.TooLongFrameException.class
org.jboss.netty.handler.codec.replay.ReplayError.class
org.jboss.netty.handler.codec.replay.ReplayingDecoder.class
org.jboss.netty.handler.codec.replay.ReplayingDecoderBuffer.class
org.jboss.netty.handler.codec.replay.UnsafeDynamicChannelBuffer.class
org.jboss.netty.handler.codec.replay.VoidEnum.class
org.jboss.netty.handler.codec.serialization.CompactObjectInputStream.class
org.jboss.netty.handler.codec.serialization.CompactObjectOutputStream.class
org.jboss.netty.handler.codec.serialization.CompatibleObjectDecoder$1.class
org.jboss.netty.handler.codec.serialization.CompatibleObjectDecoder.class
org.jboss.netty.handler.codec.serialization.CompatibleObjectDecoderState.class
org.jboss.netty.handler.codec.serialization.CompatibleObjectEncoder.class
org.jboss.netty.handler.codec.serialization.ObjectDecoder.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
依赖Jar: |
slf4j-api-1.5.2.jar
/org.slf4j/slf4j-api/1.5.2
查看slf4j-api所有版本文件
commons-logging-1.1.1.jar
/commons-logging/commons-logging/1.1.1
查看commons-logging所有版本文件
jboss-logging-spi-2.0.5.GA.jar
/org.jboss.logging/jboss-logging-spi/2.0.5.GA
查看jboss-logging-spi所有版本文件
log4j-1.2.15.jar
/log4j/log4j/1.2.15
查看log4j所有版本文件
junit-4.4.jar
/junit/junit/4.4
查看junit所有版本文件
|