Created
June 17, 2013 07:58
-
-
Save darylteo/5795320 to your computer and use it in GitHub Desktop.
Reproducing unsuppressed error message in vert.x 2.0.0-CR1
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
| apply plugin: 'java' | |
| repositories { | |
| mavenCentral() | |
| } | |
| dependencies { | |
| compile "io.vertx:vertx-platform:2.0.0-CR1" | |
| } |
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
| 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