smart-buffer
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.smartboot.socket</groupId>
<artifactId>smart-buffer</artifactId>
<version>1.4.3.rc-8</version>
</dependency><?xml version="1.0"?>
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<name>smart-buffer</name>
<description>A high performance network application framework based on Java AIO</description>
<modelVersion>4.0.0</modelVersion>
<groupId>org.smartboot.socket</groupId>
<artifactId>smart-buffer</artifactId>
<parent>
<groupId>org.smartboot.socket</groupId>
<artifactId>smart-socket-parent</artifactId>
<version>1.4.3.rc-8</version>
<relativePath>../smart-socket-parent</relativePath>
</parent>
<dependencies>
<!-- 日志系统 -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<!--<links>https://docs.oracle.com/javase/7/docs/api/</links>-->
<aggregate>true</aggregate>
<show>public</show>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>