Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
twitch
live-coding-fr
Commits
8d58b798
Commit
8d58b798
authored
Jan 20, 2021
by
Colin DAMON
Browse files
Init game of life
parent
20da2444
Changes
5
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
8d58b798
...
@@ -23,3 +23,4 @@ include:
...
@@ -23,3 +23,4 @@ include:
-
local
:
"
/roman-calculator/.gitlab-ci.yml"
-
local
:
"
/roman-calculator/.gitlab-ci.yml"
-
local
:
"
/h2g2/.gitlab-ci.yml"
-
local
:
"
/h2g2/.gitlab-ci.yml"
-
local
:
"
/java-streams/.gitlab-ci.yml"
-
local
:
"
/java-streams/.gitlab-ci.yml"
-
local
:
"
/game-of-life/.gitlab-ci.yml"
README.md
View file @
8d58b798
...
@@ -48,3 +48,4 @@ Ce dépôt Git a pour but de partager les différents ateliers pouvant être ré
...
@@ -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 |
|
[
H2G2 (TypeScript)
](
/h2g2
)
| Kata | Moyenne |
|
[
Java streams
](
/java-streams
)
| Code&coffee | Moyenne |
|
[
Java streams
](
/java-streams
)
| Code&coffee | Moyenne |
|
[
CodingGame Mars Landing Party
](
https://www.youtube.com/watch?v=FeJa3UnmeHw
)
| CodingGame | Moyenne |
|
[
CodingGame Mars Landing Party
](
https://www.youtube.com/watch?v=FeJa3UnmeHw
)
| CodingGame | Moyenne |
|
[
Game of life
](
/game-of-life
)
| Kata | Enervé |
game-of-life/.gitlab-ci.yml
0 → 100644
View file @
8d58b798
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/README.md
0 → 100644
View file @
8d58b798
# 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
game-of-life/pom.xml
0 → 100644
View file @
8d58b798
<?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>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment