Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -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') {
Expand Down
4 changes: 4 additions & 0 deletions Maxime.MD
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion build-war/src/main/webapp/index.jsp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<%@page import="org.nirkoren.maven.demo.HelloHandler"%>
<html>
<body style="background-color:silver; font-family: arial;">
<body style="background-color:gold; font-family: arial;">
<h2>Welcome to DevOpsCon Demo repo</h2>
CI/CD Workshop, Maven / Tomcat WAR example<P>
<%
Expand Down