Skip to content

Instantly share code, notes, and snippets.

@pmlopes
Created July 10, 2015 14:20
Show Gist options
  • Select an option

  • Save pmlopes/9f18f63b35dc58fe786a to your computer and use it in GitHub Desktop.

Select an option

Save pmlopes/9f18f63b35dc58fe786a to your computer and use it in GitHub Desktop.

Revisions

  1. pmlopes created this gist Jul 10, 2015.
    15 changes: 15 additions & 0 deletions README.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,15 @@
    # Vert.x 3 Minimal stack

    Vert.x3 + the endorsed modules

    ## Contents

    * Vert.x Core
    * Groovy, JS and Ruby languages
    * Hazelcast clustering
    * Service proxy

    More information on:

    * The vert.x web site: http://vertx.io

    11 changes: 11 additions & 0 deletions build.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,11 @@
    To build unpack the desired stack:

    ```
    tar --strip-components=1 -zxvf vertx-3.0.0-min.tar.gz
    ```

    make sure the stack name and version on package.json matches the tar and then:

    ```
    npm publish
    ```
    1 change: 1 addition & 0 deletions index.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1 @@
    throw new Error('This module is not supposed to be imported!');
    28 changes: 28 additions & 0 deletions package.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,28 @@
    {
    "name": "vertx3-min",
    "version": "3.0.0-1",
    "description": "Vert.x: A tool-kit for building reactive applications on the JVM.",
    "main": "index.js",
    "repository": "vert-x3",
    "keywords": [
    "vert.x",
    "framework",
    "polyglot",
    "reactive"
    ],
    "license": "Apache-2.0",
    "dependencies": {},
    "bin": {
    "vertx": "./bin/vertx",
    "vertx.bat": "./bin/vertx.bat"
    },
    "homepage": "http://vertx.io",
    "engines": {},
    "files": [
    "bin",
    "conf",
    "lib",
    "README.md",
    "index.js"
    ]
    }