Skip to content

Commit

Permalink
Cleanup for 0.3.5 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
noboomu committed Nov 19, 2018
1 parent 9c0d71b commit 341bb46
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 6 deletions.
24 changes: 21 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.sinistral</groupId>
<artifactId>proteus-core</artifactId>
<version>0.3.5-SNAPSHOT</version>
<version>0.3.5</version>
<name>proteus core</name>
<description>Proteus is an extremely light, fast, and flexible Java REST API framework built atop Undertow.</description>
<url>http://github.com/noboomu/proteus</url>
Expand Down Expand Up @@ -238,7 +238,7 @@
<version>2.1.1</version>
</dependency>



<dependency>
<groupId>net.openhft</groupId>
Expand All @@ -263,7 +263,7 @@
<artifactId>guice</artifactId>
<version>4.1.0</version>
</dependency>

<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
Expand Down Expand Up @@ -304,6 +304,7 @@
<artifactId>slf4j-ext</artifactId>
<version>1.7.25</version>
</dependency>

<dependency>
<groupId>org.fusesource.jansi</groupId>
<artifactId>jansi</artifactId>
Expand Down Expand Up @@ -403,6 +404,23 @@
<version>${openapi.version}</version>
</dependency>

<!-- <dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-api</artifactId>
<version>0.10.5</version>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-impl</artifactId>
<version>0.10.5</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-jackson</artifactId>
<version>0.10.5</version>
<scope>runtime</scope>
</dependency> -->

</dependencies>
<repositories>
Expand Down
5 changes: 2 additions & 3 deletions src/main/java/io/sinistral/proteus/server/ServerResponse.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
import java.util.Locale;
import java.util.Map;

import javax.ws.rs.WebApplicationException;
import javax.ws.rs.core.Response;

import org.slf4j.Logger;
Expand All @@ -37,7 +36,7 @@
* @author jbauer
* Base server response. Friendlier interface to underlying exchange.
* @TODO extend javax.ws.rs.core.Response
*/
*/

public class ServerResponse<T>
{
Expand Down Expand Up @@ -70,7 +69,7 @@ public class ServerResponse<T>

public ServerResponse()
{

}

public ByteBuffer getBody()
Expand Down

0 comments on commit 341bb46

Please sign in to comment.