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
Expand Up @@ -8,9 +8,9 @@ pipeline {
stage('Build') {
steps {
println 'Cloning git repository...'
git 'https://github.com/nirkoren/devopscon.git'
git 'https://github.com/bishopmw/devopscon.git'
println 'Starting the build...'
sh "mvn clean install -Pci"
bat "mvn clean install -Pci"
}
post {
success {
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,4 @@ In order to make it work, please follow the instructions below:
> </tomcat-users>
> ```

Commit: Michael Bishop (michael.bishop@anthem.com)
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:yellow ; font-family: arial;">
<body style="background-color:blueviolet ; font-family: arial;">
<h2>Welcome to DevOpsCon Demo project</h2>
CI/CD Workshop, Maven / Tomcat WAR example<P>
<%
Expand Down