Created
April 19, 2017 16:23
-
-
Save stuarth/e8de2bd9abc7bb5b4a3fdcaa70a51f97 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| todolist git:(master) gradle clean installDist && \ | |
| ./todolist/build/install/todolist/bin/todolist | |
| Starting a Gradle Daemon (subsequent builds will be faster) | |
| :todolist:clean UP-TO-DATE | |
| :todolist:compileJava | |
| Download https://repo1.maven.org/maven2/com/googlecode/lanterna/lanterna/3.0.0-rc1/lanterna-3.0.0-rc1.pom | |
| Download https://repo1.maven.org/maven2/com/googlecode/lanterna/lanterna/3.0.0-rc1/lanterna-3.0.0-rc1.jar | |
| /Users/stuart/dev/pumpkindb-java/examples/todolist/src/main/java/org/pumpkindb/examples/todolist/Main.java:20: error: package io.netty.buffer does not exist | |
| import io.netty.buffer.ByteBuf; | |
| ^ | |
| /Users/stuart/dev/pumpkindb-java/examples/todolist/src/main/java/org/pumpkindb/examples/todolist/Main.java:21: error: package io.netty.buffer does not exist | |
| import io.netty.buffer.Unpooled; | |
| ^ | |
| /Users/stuart/dev/pumpkindb-java/examples/todolist/src/main/java/org/pumpkindb/examples/todolist/Main.java:128: error: cannot find symbol | |
| @Override public void encode(ByteBuf buffer) { | |
| ^ | |
| symbol: class ByteBuf | |
| location: class DefineInstruction | |
| /Users/stuart/dev/pumpkindb-java/examples/todolist/src/main/java/org/pumpkindb/examples/todolist/Main.java:44: error: cannot find symbol | |
| @Override public void encode(ByteBuf buffer) { | |
| ^ | |
| symbol: class ByteBuf | |
| location: class StackCollectingProgram | |
| /Users/stuart/dev/pumpkindb-java/examples/todolist/src/main/java/org/pumpkindb/examples/todolist/Main.java:81: error: cannot find symbol | |
| @Override public void encode(ByteBuf buffer) { | |
| ^ | |
| symbol: class ByteBuf | |
| location: class AddTodoItem | |
| /Users/stuart/dev/pumpkindb-java/examples/todolist/src/main/java/org/pumpkindb/examples/todolist/Main.java:97: error: cannot find symbol | |
| @Override public void encode(ByteBuf buffer) { | |
| ^ | |
| symbol: class ByteBuf | |
| location: class ChangeTodoItem | |
| /Users/stuart/dev/pumpkindb-java/examples/todolist/src/main/java/org/pumpkindb/examples/todolist/Main.java:109: error: cannot find symbol | |
| @Override public void encode(ByteBuf buffer) { | |
| ^ | |
| symbol: class ByteBuf | |
| location: class AddNewTodoItem | |
| /Users/stuart/dev/pumpkindb-java/examples/todolist/src/main/java/org/pumpkindb/examples/todolist/Main.java:141: error: cannot find symbol | |
| @Override public void accept(ByteBuf byteBuf) { | |
| ^ | |
| symbol: class ByteBuf | |
| location: class Handler | |
| /Users/stuart/dev/pumpkindb-java/examples/todolist/src/main/java/org/pumpkindb/examples/todolist/Main.java:167: error: cannot find symbol | |
| @Override public void accept(ByteBuf byteBuf) { | |
| ^ | |
| symbol: class ByteBuf | |
| location: class RoutingHandler | |
| /Users/stuart/dev/pumpkindb-java/examples/todolist/src/main/java/org/pumpkindb/examples/todolist/Main.java:135: error: cannot access ByteBuf | |
| static class Handler implements MessageHandler { | |
| ^ | |
| class file for io.netty.buffer.ByteBuf not found | |
| /Users/stuart/dev/pumpkindb-java/examples/todolist/src/main/java/org/pumpkindb/examples/todolist/Main.java:257: error: cannot find symbol | |
| ByteBuf bb = Unpooled.wrappedBuffer(b); | |
| ^ | |
| symbol: class ByteBuf | |
| location: class Main | |
| /Users/stuart/dev/pumpkindb-java/examples/todolist/src/main/java/org/pumpkindb/examples/todolist/Main.java:257: error: cannot find symbol | |
| ByteBuf bb = Unpooled.wrappedBuffer(b); | |
| ^ | |
| symbol: variable Unpooled | |
| location: class Main | |
| /Users/stuart/dev/pumpkindb-java/examples/todolist/src/main/java/org/pumpkindb/examples/todolist/Main.java:382: error: cannot find symbol | |
| ByteBuf bb = Unpooled.wrappedBuffer(key.getData()); | |
| ^ | |
| symbol: class ByteBuf | |
| /Users/stuart/dev/pumpkindb-java/examples/todolist/src/main/java/org/pumpkindb/examples/todolist/Main.java:382: error: cannot find symbol | |
| ByteBuf bb = Unpooled.wrappedBuffer(key.getData()); | |
| ^ | |
| symbol: variable Unpooled | |
| 14 errors | |
| :todolist:compileJava FAILED | |
| FAILURE: Build failed with an exception. | |
| * What went wrong: | |
| Execution failed for task ':todolist:compileJava'. | |
| > Compilation failed; see the compiler error output for details. | |
| * Try: | |
| Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. | |
| BUILD FAILED | |
| Total time: 7.162 secs |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment