Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated readme #83

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
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
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ pipeline {
stage('Build') {
steps {
println 'Cloning git repository...'
git 'https://github.com/nirkoren/devopscon.git'
git 'https://github.com/daniyah-als/devopscon.git'
println 'Starting the build...'
sh "mvn clean install -Pci"
}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Welcome to DevOpsCon CI/CD demo repo
# Welcome to DevOpsCon CI/CD demo repo - Daniyah
## This repository contains basic Maven project with Hello-World Java war file
In order to make it work, please follow the instructions below:

Expand Down
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:green ; font-family: arial;">
<h2>Welcome to DevOpsCon Demo project</h2>
CI/CD Workshop, Maven / Tomcat WAR example<P>
<%
Expand Down