Skip to content
Snippets Groups Projects
Commit 8d58b798 authored by Colin DAMON's avatar Colin DAMON
Browse files

Init game of life

parent 20da2444
No related branches found
No related tags found
1 merge request!58Resolve "Game of life"
......@@ -23,3 +23,4 @@ include:
- local: "/roman-calculator/.gitlab-ci.yml"
- local: "/h2g2/.gitlab-ci.yml"
- local: "/java-streams/.gitlab-ci.yml"
- local: "/game-of-life/.gitlab-ci.yml"
......@@ -48,3 +48,4 @@ Ce dépôt Git a pour but de partager les différents ateliers pouvant être ré
| [H2G2 (TypeScript)](/h2g2) | Kata | Moyenne |
| [Java streams](/java-streams) | Code&coffee | Moyenne |
| [CodingGame Mars Landing Party](https://www.youtube.com/watch?v=FeJa3UnmeHw) | CodingGame | Moyenne |
| [Game of life](/game-of-life) | Kata | Enervé |
package-game-of-life:
variables:
PROJECT_FOLDER: "game-of-life"
extends: .java
only:
refs:
- master
- merge_requests
changes:
- ".gitlab-common-ci.yml"
- "game-of-life/**/*"
# Game of life
Résolution en TDD et en Java du kata [Game of life](https://codingdojo.org/kata/GameOfLife/).
- **Auteurs** : Nicolas LE GRIEL et Colin DAMON
- **Date** : 20/01/2021
- **Langage** : Java
- **Niveau** : Enervé
- **Replay** : TODO
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<version>1.0.0</version>
<groupId>fr.ippon.kata</groupId>
<artifactId>java-parent</artifactId>
<relativePath>../java-parent</relativePath>
</parent>
<version>1.0.0-SNAPSHOT</version>
<artifactId>game-of-life</artifactId>
<name>GameOfLife</name>
<developers>
<developer>
<email>nlegriel@ippon.fr</email>
<name>Nicolas LE GRIEL</name>
</developer>
<developer>
<email>cdamon@ippon.fr</email>
<name>Colin DAMON</name>
</developer>
</developers>
</project>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment