Skip to content

Commit

Permalink
Sorting out new repo migration (Consensys#190)
Browse files Browse the repository at this point in the history
* Update gitter badge

* Updating circleci badge

* Ignoring equal errorprone warnings

* Fixing bad import
  • Loading branch information
lucassaldanha authored Nov 22, 2018
1 parent a693851 commit 1380337
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Orion
Orion is a PegaSys component for doing private transactions.

[![Gitter chat](https://badges.gitter.im/ConsenSys/orion.png)](https://gitter.im/ConsenSys/orion)
[![CircleCI](https://circleci.com/gh/ConsenSys/orion.svg?style=shield&circle-token=5f92fd966a971e60e57f53f2257fe5dda0fcf52c)](https://circleci.com/gh/ConsenSys/orion)
[![Gitter chat](https://badges.gitter.im/PegaSysEng/orion.png)](https://gitter.im/PegaSysEng/orion)
[![CircleCI](https://circleci.com/gh/ConsenSys/orion.svg?style=shield&circle-token=5f92fd966a971e60e57f53f2257fe5dda0fcf52c)](https://circleci.com/gh/PegaSysEng/orion)
[![Download](https://api.bintray.com/packages/consensys/binaries/orion/images/download.svg)](https://bintray.com/consensys/binaries/orion/_latestVersion)

## Development
Expand All @@ -20,4 +20,4 @@ Instructions for how to get started with developing on the Orion codebase. Pleas
* [Running Orion](documentation/install/running.md)
* [Configuring Orion](documentation/install/configure.md)
* [Running on Docker](documentation/install/docker.md)
* [Disaster Recovery Strategies](documentation/install/disaster_recovery.md)
* [Disaster Recovery Strategies](documentation/install/disaster_recovery.md)
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ tasks.withType(JavaCompile) {
'-Xlint:static',
'-Werror',
'-Xep:FutureReturnValueIgnored:OFF',
'-Xep:EqualsGetClass:OFF',
'-Xep:InsecureCryptoUsage:WARN',
'-Xep:FieldCanBeFinal:WARN',
'-Xep:WildcardImport:WARN',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ void setUp(@TempDirectory Path tempDir) throws Exception {

// Initialize the base HTTP url in two forms: String and OkHttp's HttpUrl object to allow for simpler composition
// of complex URLs with path parameters, query strings, etc.
HttpUrl nodeHTTP = new Builder().scheme("http").host("localhost").port(nodeHTTPServerPort).build();
HttpUrl nodeHTTP = new HttpUrl.Builder().scheme("http").host("localhost").port(nodeHTTPServerPort).build();
nodeBaseUrl = nodeHTTP.toString();

// orion dependencies, reset them all between tests
Expand Down Expand Up @@ -120,7 +120,7 @@ private void setupNodeServer(Router router) throws Exception {
}

private void setupClientServer(Router router) throws Exception {
HttpUrl clientHTTP = new Builder().scheme("http").host("localhost").port(clientHTTPServerPort).build();
HttpUrl clientHTTP = new HttpUrl.Builder().scheme("http").host("localhost").port(clientHTTPServerPort).build();
clientBaseUrl = clientHTTP.toString();

HttpServerOptions privateServerOptions = new HttpServerOptions();
Expand Down

0 comments on commit 1380337

Please sign in to comment.