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

Init kata

parent 2b87bd84
No related branches found
No related tags found
1 merge request!37Resolve "TCR Roman Numerals"
...@@ -14,3 +14,4 @@ include: ...@@ -14,3 +14,4 @@ include:
- local: "/mustache-replacer/.gitlab-ci.yml" - local: "/mustache-replacer/.gitlab-ci.yml"
- local: "/string-calculator-2/.gitlab-ci.yml" - local: "/string-calculator-2/.gitlab-ci.yml"
- local: "/trip-service-kata/.gitlab-ci.yml" - local: "/trip-service-kata/.gitlab-ci.yml"
- local: "/tcr-roman-numerals/.gitlab-ci.yml"
...@@ -36,3 +36,4 @@ Ce dépôt Git a pour but de partager les différents ateliers pouvant être ré ...@@ -36,3 +36,4 @@ Ce dépôt Git a pour but de partager les différents ateliers pouvant être ré
| [String calculator 2](/string-calculator-2) | Kata | Moyenne | | [String calculator 2](/string-calculator-2) | Kata | Moyenne |
| [Proxifier son localhost avec un nginx dockerisé avec Edouard CATTEZ](https://www.youtube.com/watch?v=qWMfRb3zK7k) | Talk | Facile | | [Proxifier son localhost avec un nginx dockerisé avec Edouard CATTEZ](https://www.youtube.com/watch?v=qWMfRb3zK7k) | Talk | Facile |
| [Dev pour des data scientists, un sale boulot](https://www.youtube.com/watch?v=QK3OJGAresE) | Discussion | | | [Dev pour des data scientists, un sale boulot](https://www.youtube.com/watch?v=QK3OJGAresE) | Discussion | |
| [TCR - Roman Numerals](/tcr-roman-numerals) | Kata | Enervé |
package-java-pagination-seven:
variables:
PROJECT_FOLDER: "tcr-roman-numerals"
extends: .java
only:
refs:
- master
- merge_requests
changes:
- ".gitlab-common-ci.yml"
- "tcr-roman-numerals/**/*"
# Roman Numerals en TCR
Résolution en TDD et en Java du kata [Roman Numerals](https://codingdojo.org/kata/RomanNumerals/) avec une contrainte de [TCR](https://medium.com/@kentbeck_7670/test-commit-revert-870bbd756864).
- **Auteurs** : Colin DAMON
- **Date** : 24/11/2020
- **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>tcr-roman-numerals</artifactId>
<name>TCRRomanNumerals</name>
<developers>
<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