| 组织ID: |
org.yeauty |
| 项目ID: |
netty-websocket-spring-boot-starter |
| 版本: |
0.6.4 |
| 最后修改时间: |
2018-10-04 10:19:22 |
| 包类型: |
jar |
| 标题: |
netty-websocket-spring-boot-starter |
| 描述: |
netty-websocket-spring-boot-starter is a Java WebSocket Framework based on Netty
|
| 相关URL: |
http://www.yeauty.org/ |
| 大小: |
34.90KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>org.yeauty</groupId>
<artifactId>netty-websocket-spring-boot-starter</artifactId>
<version>0.6.4</version>
</dependency>
|
| Gradle引入代码: |
org.yeauty:netty-websocket-spring-boot-starter:0.6.4
|
| 下载Jar包: |
|
| POM文件内容: |
<?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.yeauty</groupId>
<artifactId>netty-websocket-spring-boot-starter</artifactId>
<version>0.6.4</version>
<name>netty-websocket-spring-boot-starter</name>
<description>
netty-websocket-spring-boot-starter is a Java WebSocket Framework based on Netty
</description>
<url>http://www.yeauty.org/</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>Yeauty</name>
<email>YeautyYE@gmail.com</email>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/YeautyYE/netty-websocket-spring-boot-starter.git</connection>
<developerConnection>scm:git:ssh://github.com/YeautyYE/netty-websocket-spring-boot-starter.git
</developerConnection>
<url>https://github.com/YeautyYE/netty-websocket-spring-boot-starter</url>
</scm>
<properties>
<netty.version>4.1.25.Final</netty.version>
<spring-boot.version>2.0.0.RELEASE</spring-boot.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
<version>${spring-boot.version}</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec-http</artifactId>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-handler</artifactId>
<version>${netty.version}</version>
</dependency>
</dependencies>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<!-- Sources Plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Javadoc Plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</plugin>
<!-- GPG Sign Plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Nexus Staging Plugin, auto deploy close and release -->
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.8</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
</distributionManagement>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
org.yeauty.annotation.ServerEndpoint.class
org.yeauty.annotation.OnClose.class
org.yeauty.annotation.OnMessage.class
org.yeauty.annotation.OnOpen.class
org.yeauty.annotation.OnEvent.class
org.yeauty.annotation.OnError.class
org.yeauty.annotation.OnBinary.class
org.yeauty.standard.ServerEndpointConfig.class
org.yeauty.standard.WebsocketServer$1.class
org.yeauty.standard.WebSocketServerHandler.class
org.yeauty.standard.WebsocketServer.class
org.yeauty.standard.ServerEndpointExporter.class
org.yeauty.standard.HttpServerHandler.class
org.yeauty.exception.DeploymentException.class
org.yeauty.pojo.PojoEndpointServer.class
org.yeauty.pojo.Session.class
org.yeauty.pojo.PojoPathParam.class
org.yeauty.pojo.PojoMethodMapping$MethodType.class
org.yeauty.pojo.PojoMethodMapping.class
META-INF/maven/org.yeauty/netty-websocket-spring-boot-starter/pom.xml
META-INF/maven/org.yeauty/netty-websocket-spring-boot-starter/pom.properties
|
| 依赖Jar: |
spring-boot-starter-${spring-boot.version}.jar
/org.springframework.boot/spring-boot-starter/${spring-boot.version}
查看spring-boot-starter所有版本文件
netty-codec-http-${netty.version}.jar
/io.netty/netty-codec-http/${netty.version}
查看netty-codec-http所有版本文件
netty-handler-${netty.version}.jar
/io.netty/netty-handler/${netty.version}
查看netty-handler所有版本文件
|