Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,15 @@
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<dropwizard.version>1.3.14</dropwizard.version>
<jetty.version>9.4.18.v20190429</jetty.version>
<jetty.version>9.4.20.v20190813</jetty.version>
<tyrus.version>1.15</tyrus.version>
</properties>
<artifactId>dropwizard-websockets</artifactId>
<packaging>jar</packaging>
<inceptionYear>2017</inceptionYear>
<name>Dropwizard Websocket Support</name>
<description>3rd party bundle for dropwizard to enable websocket services.</description>
<url>https://github.com/LivePersonInc/dropwizard-websockets</url>
<url>https://github.com/black-snow/dropwizard-websockets</url>
<licenses>
<license>
<name>The MIT License (MIT)</name>
Expand All @@ -32,9 +33,9 @@
</developer>
</developers>
<scm>
<url>https://github.com/LivePersonInc/dropwizard-websockets</url>
<connection>scm:git:https://github.com/LivePersonInc/dropwizard-websockets.git</connection>
<developerConnection>scm:git:https://github.com/LivePersonInc/dropwizard-websockets.git</developerConnection>
<url>https://github.com/black-snow/dropwizard-websockets</url>
<connection>scm:git:https://github.com/black-snow/dropwizard-websockets.git</connection>
<developerConnection>scm:git:https://github.com/black-snow/dropwizard-websockets.git</developerConnection>
</scm>
<dependencyManagement>
<dependencies>
Expand All @@ -48,7 +49,6 @@
</dependencies>
</dependencyManagement>
<dependencies>

<dependency>
<groupId>io.dropwizard</groupId>
<artifactId>dropwizard-core</artifactId>
Expand Down Expand Up @@ -76,7 +76,7 @@
<dependency>
<groupId>org.glassfish.tyrus.ext</groupId>
<artifactId>tyrus-client-java8</artifactId>
<version>1.12</version>
<version>${tyrus.version}</version>
<scope>test</scope>
<exclusions>
<exclusion>
Expand All @@ -88,7 +88,7 @@
<dependency>
<groupId>org.glassfish.tyrus</groupId>
<artifactId>tyrus-container-grizzly-client</artifactId>
<version>1.12</version>
<version>${tyrus.version}</version>
<scope>test</scope>
<exclusions>
<exclusion>
Expand Down Expand Up @@ -124,7 +124,7 @@
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.6</version>
<version>1.6.8</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
Expand All @@ -135,7 +135,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.4</version>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-sources</id>
Expand Down Expand Up @@ -253,4 +253,4 @@
</plugin>
</plugins>
</build>
</project>
</project>
2 changes: 0 additions & 2 deletions src/main/java/io/dropwizard/websockets/GeneralUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@

import java.util.function.Consumer;
import java.util.function.Supplier;
import java.util.logging.Level;
import java.util.logging.Logger;

public class GeneralUtils {

Expand Down