View gist:602f3c3a86a8e1c303e63eb5d5bc0373
git submodule update --init --recursive |
View pom.xml
<?xml version="1.0" encoding="UTF-8"?> | |
<project xmlns="http://maven.apache.org/POM/4.0.0" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
<parent> | |
<!-- your parent pom --> | |
</parent> | |
<modelVersion>4.0.0</modelVersion> | |
<name>myproject-${option1}</name> |
View Vagrant Multi-VM with IP-LOOP
Vagrant.configure("2") do |config| | |
(1..3).each do |i| | |
config.vm.define "node-#{i}" do |node| | |
node.vm.box = "ubuntu/trusty64" | |
node.vm.network "private_network", ip: "192.168.25.#{i}", auto_config: false | |
node.vm.provision "shell", inline: "echo hello from node #{i}" | |
end | |
end | |