diff --git a/Jenkinsfile b/Jenkinsfile index 17f9509..b4c2b07 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,11 +1,11 @@ node { def mvnHome - def GIT_REPO = "https://github.com/nirkoren/devopscon.git" + def GIT_REPO = "https://github.com/maximearin/devopscon.git" stage("Preparation") { println "Cloning git repository..." git branch: "main", url: GIT_REPO - mvnHome = tool 'M3' + mvnHome = tool 'Maven local' } stage('Build & Deploy') { diff --git a/Maxime.MD b/Maxime.MD new file mode 100644 index 0000000..1d2a948 --- /dev/null +++ b/Maxime.MD @@ -0,0 +1,4 @@ +Document to keep track of what I learned during the demo. + +* Very interesting training and trainer +* GIT is not rocket science after all :D diff --git a/build-war/src/main/webapp/index.jsp b/build-war/src/main/webapp/index.jsp index d7f050a..f98c6b7 100644 --- a/build-war/src/main/webapp/index.jsp +++ b/build-war/src/main/webapp/index.jsp @@ -1,6 +1,6 @@ <%@page import="org.nirkoren.maven.demo.HelloHandler"%> -
+<%