Skip to content

Commit

Permalink
Update zeppelin v0.9.0-preview1
Browse files Browse the repository at this point in the history
  • Loading branch information
brunobonnin committed Jul 23, 2020
1 parent f50d0a2 commit 11ac656
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
.idea
*.iml
target/
pom.xml.tag
pom.xml.releaseBackup
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
<groupId>org.apache.zeppelin</groupId>
<artifactId>zeppelin-mongodb</artifactId>
<packaging>jar</packaging>
<version>0.7.0</version>
<version>0.9.0-preview1</version>
<name>Zeppelin: MongoDB interpreter</name>
<url>http://www.apache.org</url>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<zeppelin.version>0.7.0</zeppelin.version>
<zeppelin.version>0.9.0-preview1</zeppelin.version>
<junit.version>4.11</junit.version>
</properties>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ public class MongoDbInterpreterTest implements InterpreterOutputListener {
private final Properties props = new Properties();
private final MongoDbInterpreter interpreter = new MongoDbInterpreter(props);
private final InterpreterOutput out = new InterpreterOutput(this);
private final InterpreterContext context = new InterpreterContext("test", "test",
null, null, null, null, null, null, null, null, null, out);
private final InterpreterContext context = InterpreterContext.builder()
.setInterpreterOut(out).setNoteId("test").setNoteName("test").build();

private ByteBuffer buffer;

@BeforeClass
Expand Down

0 comments on commit 11ac656

Please sign in to comment.