-
-
Save darylteo/4979333 to your computer and use it in GitHub Desktop.
Sorry you'll need to do the run script yourself...
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
| #!/bin/bash | |
| javac -cp /Users/dteo/.gradle/caches/artifacts-15/filestore/io.vertx/vertx-platform/2.0.0-SNAPSHOT/jar/aaeed5b66ffe6491ef4546a9b3ca136fc6d2c279/vertx-platform-2.0.0-SNAPSHOT.jar:/Users/dteo/.gradle/caches/artifacts-15/filestore/org.slf4j/slf4j-api/1.6.2/jar/8619e95939167fb37245b5670135e4feb0ec7d50/slf4j-api-1.6.2.jar:/Users/dteo/.gradle/caches/artifacts-15/filestore/log4j/log4j/1.2.16/bundle/7999a63bfccbc7c247a9aea10d83d4272bd492c6/log4j-1.2.16.jar:/Users/dteo/.gradle/caches/artifacts-15/filestore/io.netty/netty/3.6.2.Final/bundle/69be11c61427f0604a30539755add84ad9e37e5e/netty-3.6.2.Final.jar:/Users/dteo/.gradle/caches/artifacts-15/filestore/org.codehaus.jackson/jackson-core-asl/1.9.4/jar/8d8b2a3e5bc77ee1be67d060b44ac77d48a27d6e/jackson-core-asl-1.9.4.jar:/Users/dteo/.gradle/caches/artifacts-15/filestore/org.codehaus.jackson/jackson-mapper-asl/1.9.4/jar/5206191b35112f50b8e25fcbd3f3b84e12e11cee/jackson-mapper-asl-1.9.4.jar:/Users/dteo/.gradle/caches/artifacts-15/filestore/com.hazelcast/hazelcast/2.4.1/jar/3b84cd32555d9528a19615b6b3fdfc94920160e/hazelcast-2.4.1.jar:/Users/dteo/.gradle/caches/artifacts-15/filestore/io.vertx/vertx-core/2.0.0-SNAPSHOT/jar/6b97b8bfa43ef523d83b018a9df0bfb413ca670a/vertx-core-2.0.0-SNAPSHOT.jar:. test.java | |
| java -cp /Users/dteo/.gradle/caches/artifacts-15/filestore/io.vertx/vertx-platform/2.0.0-SNAPSHOT/jar/aaeed5b66ffe6491ef4546a9b3ca136fc6d2c279/vertx-platform-2.0.0-SNAPSHOT.jar:/Users/dteo/.gradle/caches/artifacts-15/filestore/org.slf4j/slf4j-api/1.6.2/jar/8619e95939167fb37245b5670135e4feb0ec7d50/slf4j-api-1.6.2.jar:/Users/dteo/.gradle/caches/artifacts-15/filestore/log4j/log4j/1.2.16/bundle/7999a63bfccbc7c247a9aea10d83d4272bd492c6/log4j-1.2.16.jar:/Users/dteo/.gradle/caches/artifacts-15/filestore/io.netty/netty/3.6.2.Final/bundle/69be11c61427f0604a30539755add84ad9e37e5e/netty-3.6.2.Final.jar:/Users/dteo/.gradle/caches/artifacts-15/filestore/org.codehaus.jackson/jackson-core-asl/1.9.4/jar/8d8b2a3e5bc77ee1be67d060b44ac77d48a27d6e/jackson-core-asl-1.9.4.jar:/Users/dteo/.gradle/caches/artifacts-15/filestore/org.codehaus.jackson/jackson-mapper-asl/1.9.4/jar/5206191b35112f50b8e25fcbd3f3b84e12e11cee/jackson-mapper-asl-1.9.4.jar:/Users/dteo/.gradle/caches/artifacts-15/filestore/com.hazelcast/hazelcast/2.4.1/jar/3b84cd32555d9528a19615b6b3fdfc94920160e/hazelcast-2.4.1.jar:/Users/dteo/.gradle/caches/artifacts-15/filestore/io.vertx/vertx-core/2.0.0-SNAPSHOT/jar/6b97b8bfa43ef523d83b018a9df0bfb413ca670a/vertx-core-2.0.0-SNAPSHOT.jar:. test |
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; | |
| public class test{ | |
| public static void main(String args[]) throws Exception { | |
| PlatformLocator.factory.createPlatformManager().deployModule("maven:com.mycompany:my-module:1.0.0-SNAPSHOT", null, 1, null); | |
| Thread.sleep(10000); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment