Skip to content

Instantly share code, notes, and snippets.

@darylteo
Created June 17, 2013 07:58
Show Gist options
  • Select an option

  • Save darylteo/5795320 to your computer and use it in GitHub Desktop.

Select an option

Save darylteo/5795320 to your computer and use it in GitHub Desktop.
Reproducing unsuppressed error message in vert.x 2.0.0-CR1
apply plugin: 'java'
repositories {
mavenCentral()
}
dependencies {
compile "io.vertx:vertx-platform:2.0.0-CR1"
}
import org.vertx.java.platform.PlatformLocator;
import org.vertx.java.platform.PlatformManager;
public class Main {
public static void main(String args[]){
PlatformManager man = PlatformLocator.factory.createPlatformManager();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment