blather
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.mastfrog</groupId>
<artifactId>blather</artifactId>
<version>2.9.7</version>
</dependency><?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<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>
<parent>
<groupId>com.mastfrog</groupId>
<artifactId>mastfrog-parent</artifactId>
<version>2.9.7</version>
<relativePath/>
</parent>
<artifactId>blather</artifactId>
<url>https://github.com/timboudreau/blather</url>
<name>Blather - Websockets</name>
<issueManagement>
<system>Github</system>
<url>https://github.com/timboudreau/blather/issues</url>
</issueManagement>
<licenses>
<license>
<name>MIT</name>
<url>https://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>
<dependencies>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-handler</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>acteur-headers</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>util-function</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>util-net</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>giulius</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>url</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>acteur</artifactId>
<type>jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>giulius-tests</artifactId>
<type>jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<scm>
<url>https://github.com/timboudreau/blather.git</url>
<connection>scm:git:https://github.com/timboudreau/blather.git</connection>
<developerConnection>git@github.com/timboudreau/blather.git</developerConnection>
</scm>
<organization>
<name>Mastfrog Technologies</name>
<url>https://mastfrog.com</url>
</organization>
<developers>
<developer>
<name>Tim Boudreau</name>
<email>tim@timboudreau.com</email>
<url>https://timboudreau.com</url>
</developer>
</developers>
</project>