From 8d5253952978f925d0e3215c4d3d86e89dac9719 Mon Sep 17 00:00:00 2001 From: Fabricio20 Date: Tue, 17 Oct 2017 09:59:18 +0900 Subject: [PATCH 1/4] Bring our potato to the SSL era --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5eb74832..9042be1c 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Potato If you fork this then you can say you forked a potato. -![potato](http://i.imgur.com/LARtp1o.jpg) +![potato](https://i.imgur.com/Ji3Vtho.jpg) Forking potatoes is an ancient and well-mannered tradition. From c006d091d26abcf6bed491214b175ea0ac7979b1 Mon Sep 17 00:00:00 2001 From: Fabricio20 Date: Tue, 17 Oct 2017 10:02:14 +0900 Subject: [PATCH 2/4] Reduce potato size --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9042be1c..31dc8819 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Potato If you fork this then you can say you forked a potato. -![potato](https://i.imgur.com/Ji3Vtho.jpg) + Forking potatoes is an ancient and well-mannered tradition. From d66e51846b88ab326775ff9cc6ed7c5b3e0d2eda Mon Sep 17 00:00:00 2001 From: Fabricio20 Date: Tue, 17 Oct 2017 10:03:09 +0900 Subject: [PATCH 3/4] Oops --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 31dc8819..235be29d 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Potato If you fork this then you can say you forked a potato. - + Forking potatoes is an ancient and well-mannered tradition. From 8c90daec8f48af742f44e7b2128832b007f45b2e Mon Sep 17 00:00:00 2001 From: Fabricio20 Date: Mon, 21 Jan 2019 19:17:05 -0200 Subject: [PATCH 4/4] Jenkins pipeline --- Jenkinsfile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Jenkinsfile diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 00000000..0b167ad7 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,15 @@ +pipeline { + agent { + docker { + image 'maven' + } + + } + stages { + stage('Build') { + steps { + sh 'mvn clean package' + } + } + } +} \ No newline at end of file