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
8 changes: 8 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM maven:3.8.6-openjdk-8 as build
RUN git clone https://github.com/IsmailAhmed98/game-of-life.git && cd /game-of-life && mvn package


FROM tomcat:8-jdk8-corretto
COPY --from=build /game-of-life/gameoflife-web/target/gameoflife.war /usr/local/tomcat/webapps/gameoflife.war
EXPOSE 8080
CMD ["catalina.sh", "run"]
5 changes: 4 additions & 1 deletion README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Streamline software development with Jenkins, the popular Java-based open source
Ideal for developers, software architects, and project managers, Jenkins: The Definitive Guide is both a CI tutorial and a comprehensive Jenkins reference. Through its wealth of best practices and real-world tips, you'll discover how easy it is to set up a CI service with Jenkins.

- Learn how to install, configure, and secure your Jenkins server
- Organize and monitor general-purpose build jobs
- Organize and monitor general-purpose bild jobs
- Integrate automated tests to verify builds, and set up code quality reporting
- Establish effective team notification strategies and techniques
- Configure build pipelines, parameterized jobs, matrix builds, and other advanced jobs
Expand All @@ -29,3 +29,6 @@ Ideal for developers, software architects, and project managers, Jenkins: The De
## The author

John is an experienced consultant and trainer specialising in Enterprise Java, Web Development, and Open Source technologies, based in Sydney, Australia. Well known in the Java community for his many published articles, and as author of Java Power Tools, John helps organisations around the world to optimize their Java development processes and infrastructures and provides training and mentoring in open source technologies, SDLC tools, and agile development processes. John is CEO of [Wakaleo Consulting](http://www.wakaleo.com), a company that provides consulting, training and mentoring services in Enterprise Java and Agile Development. He is also part of the founding team of [Test Automation](http://www.testautomation.com.au/), a service that automates the manual regression tests conducted during the integration and acceptance testing stages of a web site release.



4 changes: 4 additions & 0 deletions Shane.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Hey man, saw you added me as a collaborator.
Hope this is good enough for the assignemnt.
You can let me know through the PR comment.
(👉゚ヮ゚)👉
19 changes: 19 additions & 0 deletions gameoflife-acceptance-tests/azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
pool:
vmImage: 'ubuntu-22.04'
trigger:
- master
stages:
- stage: Build stage
jobs:
- job: Build
steps:
- task: 'Maven@3'
inputs:
goals: 'package'
testResultsFiles: '**/surefire-reports/TEST-*.xml'
jdkVersionOption: "1.11"
displayName: "Building GOL"