Skip to content

Instantly share code, notes, and snippets.

@awesomejt
awesomejt / Vagrant file
Created January 19, 2017 22:19
Vagrant file to install Jenkins 2 on Ubuntu 16.04 LTS, along with other tools.
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
# config.vm.box = "Ubuntu-16LTS"
config.vm.box = "ubuntu/xenial64"
config.vbguest.auto_update = false
config.vm.network "forwarded_port", guest: 8080, host: 8090
@awesomejt
awesomejt / pom.xml
Created April 20, 2016 04:55
Minimal Maven POM file
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>clinic.programmming</groupId>
<artifactId>example</artifactId>
<version>1.0</version>
</project>