| 组织ID: |
org.atmosphere.nettosphere.samples |
| 项目ID: |
nettosphere-chat |
| 版本: |
2.4.20 |
| 最后修改时间: |
2019-12-01 11:57:14 |
| 包类型: |
jar |
| 标题: |
Nettosphere Chat |
| 大小: |
118.12KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>org.atmosphere.nettosphere.samples</groupId>
<artifactId>nettosphere-chat</artifactId>
<version>2.4.20</version>
</dependency>
|
| Gradle引入代码: |
org.atmosphere.nettosphere.samples:nettosphere-chat:2.4.20
|
| 下载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/maven-v4_0_0.xsd">
<parent>
<groupId>org.atmosphere.samples</groupId>
<artifactId>nettosphere-samples</artifactId>
<version>2.4.20</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.atmosphere.nettosphere.samples</groupId>
<artifactId>nettosphere-chat</artifactId>
<packaging>jar</packaging>
<version>2.4.20</version>
<name>Nettosphere Chat</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>org.atmosphere</groupId>
<artifactId>atmosphere-runtime</artifactId>
</dependency>
<dependency>
<groupId>org.atmosphere</groupId>
<artifactId>nettosphere</artifactId>
</dependency>
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-servlet_3.0_spec</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson-version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.9</version>
<executions>
<execution>
<phase>generate-resources</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>org.atmosphere.client</groupId>
<artifactId>javascript</artifactId>
<version>${client-version}</version>
<type>war</type>
<overWrite>true</overWrite>
<outputDirectory>${project.build.directory}/classes</outputDirectory>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.1.1</version>
<executions>
<execution>
<goals>
<goal>java</goal>
</goals>
</execution>
</executions>
<configuration>
<mainClass>org.nettosphere.samples.chat.NettosphereChat</mainClass>
</configuration>
</plugin>
<plugin>
<executions>
<execution>
<id>distro-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.3</version>
<configuration>
<descriptors>
<descriptor>src/main/assembly/distribution.xml</descriptor>
</descriptors>
</configuration>
</plugin>
</plugins>
</build>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
index.html
javascript/application.js
javascript/atmosphere-min.js
javascript/atmosphere.js
javascript/jquery-2.0.3.js
META-INF/maven/org.atmosphere.client/javascript/pom.properties
META-INF/maven/org.atmosphere.client/javascript/pom.xml
org.nettosphere.samples.chat.Chat$1.class
org.nettosphere.samples.chat.Chat$Data.class
org.nettosphere.samples.chat.Chat.class
org.nettosphere.samples.chat.NettosphereChat.class
WEB-INF/web.xml
META-INF/maven/org.atmosphere.nettosphere.samples/nettosphere-chat/pom.xml
META-INF/maven/org.atmosphere.nettosphere.samples/nettosphere-chat/pom.properties
|
| 依赖Jar: |
jackson-databind-${jackson-version}.jar
/com.fasterxml.jackson.core/jackson-databind/${jackson-version}
查看jackson-databind所有版本文件
|