This project is a template to start your own Vert.x project using Apache Maven.
Create your project with:
git clone https://github.com/cescoffier/vertx-maven-starter.git PROJECT_NAME
Replace PROJECT_NAME
with the name of your project.
On Linux and MacOSx (or Windows with bash
), if you want to go faster and generate an already configured project run:
# Bash
curl https://gist.githubusercontent.com/cescoffier/cfd46c2614f54d5e2a88d5fdc4b828ed/raw/c31b5ac5b86f39b93bd8508e80aa40e880e207b5/create-project-maven.sh -o vertx-create-maven-project.sh && bash vertx-create-maven-project.sh
# Fish
curl https://gist.githubusercontent.com/cescoffier/cfd46c2614f54d5e2a88d5fdc4b828ed/raw/c31b5ac5b86f39b93bd8508e80aa40e880e207b5/create-project-maven.sh -o vertx-create-maven-project.sh; bash vertx-create-maven-project.sh
Once you have retrieved the project, you can check that everything works with:
mvn test exec:java
The command compiles the project and runs the tests, then it launches the application, so you can check by yourself. Open your browser to http://localhost:8080. You should see a Hello World message.
The project contains:
-
a
pom.xml
file -
a main verticle file (src/main/java/io/vertx/starter/MainVerticle.java)
-
an unit test (src/main/test/io/vertx/starter/MainVerticleTest.java)
-
Delete the
.git
directory -
Open the
pom.xml
file and customize thegroupId
,artifactId
andversion
. You can also change themain.verticle
property to use your own package name and verticle class. -
Run
redeploy.sh
(orredeploy.bat
on Windows) and the project recompiles while editing.
Note
|
the redeploy script are also configurable
|