Skip to content

Commit

Permalink
Bump vert.x version to 3.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Johannes Schüth committed Mar 13, 2017
1 parent b10ae8b commit 46177e4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,6 @@ public DemoVerticle(DemoDataProvider demoDataProvider, RouterStorage routerStora
this.demoDataProvider = demoDataProvider;
}

// @Override
// public String getDescription() {
// return "Provides endpoints which serve the demo application";
// }

private void addRedirectionHandler() {
route().method(GET).handler(rc -> {
if ("/demo".equals(rc.request().path())) {
Expand All @@ -59,8 +54,8 @@ public void registerEndPoints() throws Exception {
} catch (Exception e) {
log.error("Error while generating demo data.", e);
}
}, rh -> {
System.out.println("Done");
}, false, rh -> {
log.info("Demo data setup complete");
});
} else {
log.info("Demo graph was already setup once. Not invoking demo data setup.");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ public JsonObject getMappingProperties() {
JsonObject props = new JsonObject();
props.put(NAME_KEY, trigramStringType());

//TODO tags

// project
JsonObject projectMapping = new JsonObject();
projectMapping.put("type", OBJECT);
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<parent>
<groupId>com.gentics.vertx</groupId>
<artifactId>maven-vertx-parent</artifactId>
<version>3.4.0.Beta1</version>
<version>3.4.0</version>
</parent>

<developers>
Expand Down

0 comments on commit 46177e4

Please sign in to comment.