- Improve TypeInfo test to also test the model type info construction - eclipse-vertx/vertx-codegen#58
- Missing method when using
default
- eclipse-vertx/vertx-codegen#56 - Incremental templating - fixes #46 - eclipse-vertx/vertx-codegen#55
- @GenModule Api improvements - eclipse-vertx/vertx-codegen#54
- Incremental templating - fixes #46 - eclipse-vertx/vertx-codegen#53
- @DataObject Map support improvements + data object clarifications - f… - eclipse-vertx/vertx-codegen#52
- Small Error Message "Fix" - eclipse-vertx/vertx-codegen#51
- Enum processing support - fixes #27 - eclipse-vertx/vertx-codegen#50
- Wrong cached type generation for List of api objects - vert-x3/vertx-lang-groovy#19
- Add new TCK tests and fix missing import - vert-x3/vertx-lang-groovy#18
- Implement throwable param - vert-x3/vertx-lang-groovy#17
- Broken links in the generated documentation - vert-x3/vertx-lang-groovy#13
- Refactor for JS proxygen - vert-x3/vertx-lang-js#35
- restore the old vertxbus.js to comply with the old API, new users sho… - vert-x3/vertx-web#212
- Small performance improvement on String processing - vert-x3/vertx-web#211
- Allow the static handler to use a custom class loader to load resources - vert-x3/vertx-web#209
- fixes #196 using the new vertxbus.js code - vert-x3/vertx-web#208
- Issue/complete implementation vertxbusjs - vert-x3/vertx-web#207
- NullPointerException in RoutingContextImpl at the latest 3.1.0 snapshot build - vert-x3/vertx-web#205
- Fixes #195 makes loader work with webpack - vert-x3/vertx-web#203
- Template engine extraction - vert-x3/vertx-web#202
- #42 updated mongo-driver-async to version 3.0.4 - vert-x3/vertx-mongo-client#43
- JAVA high frequent gc - com.mongodb.connection.AsynchronousSocketChannelStream$BasicCompletionHandler EATs CPU - vert-x3/vertx-mongo-client#42
- Improve ObjectId support - vert-x3/vertx-mongo-client#41
- added support for useObjectId - vert-x3/vertx-mongo-client#38
- useObjectId Doesn't work - vert-x3/vertx-mongo-client#36
- Feature/oid support - vert-x3/vertx-mongo-client#35
- Configuring correct parameter at MongoClientSettings.Builder - vert-x3/vertx-mongo-client#34
- Feature/binary support - vert-x3/vertx-mongo-client#29
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<project xmlns="http://maven.apache.org/POM/4.0.0" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>io.vertx.devoxx</groupId> | |
<artifactId>micro-service-workshop</artifactId> | |
<version>1.0-SNAPSHOT</version> |
This file contains 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
# | |
# vert.x stack descriptor | |
# | |
# To add a dependency: | |
# - if the dependency is already listed, just set `included` to `true` | |
# - if not, add the dependency using the Maven coordinates, and set `included` to `true` | |
# | |
# You can also set `exclusions` and whether or not the dependency need to resolve its transitive dependencies. | |
# | |
# Then launch the resolution process with: vertx resolve --dir=lib --stack=./vertx-stack.yaml |
This file contains 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
// | |
// vert.x stack descriptor | |
// | |
// To add a dependency: | |
// - if the dependency is already listed, just set `included` to `true` | |
// - if not, add the dependency using the Maven coordinates, and set `included` to `true` | |
// | |
// You can also set `exclusions` and whether or not the dependency need to resolve its transitive dependencies. | |
// | |
// Then launch the resolution process with: vertx resolve --dir=lib --stack=./vertx-stack.json |
This file contains 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
package io.vertx.unit.example; | |
import io.vertx.ext.unit.TestContext; | |
import org.hamcrest.Description; | |
import org.hamcrest.Matcher; | |
import org.hamcrest.StringDescription; | |
/** | |
* Provides {@code assertThat} methods usable with Vertx-Unit. | |
*/ |
This file contains 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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant.configure("2") do |config| | |
config.vm.box = "vertx/win10" | |
config.vm.box_url = "http://209.132.178.63/vagrant/Win10.box" | |
# big timeout since windows boot is very slow | |
config.vm.boot_timeout = 500 |
This file contains 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
server { | |
server_name sonar.dynamis-technologies.com; | |
location / { | |
proxy_pass http://localhost:12356; | |
proxy_set_header Host $host; | |
proxy_buffering off; | |
} | |
} |