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
c6665c55
Commit
c6665c55
authored
Nov 24, 2020
by
Colin DAMON
Browse files
Init kata
parent
2b87bd84
Changes
5
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
c6665c55
...
...
@@ -14,3 +14,4 @@ include:
-
local
:
"
/mustache-replacer/.gitlab-ci.yml"
-
local
:
"
/string-calculator-2/.gitlab-ci.yml"
-
local
:
"
/trip-service-kata/.gitlab-ci.yml"
-
local
:
"
/tcr-roman-numerals/.gitlab-ci.yml"
README.md
View file @
c6665c55
...
...
@@ -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 |
|
[
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 | |
|
[
TCR - Roman Numerals
](
/tcr-roman-numerals
)
| Kata | Enervé |
tcr-roman-numerals/.gitlab-ci.yml
0 → 100644
View file @
c6665c55
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/**/*"
tcr-roman-numerals/README.md
0 → 100644
View file @
c6665c55
# 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
tcr-roman-numerals/pom.xml
0 → 100644
View file @
c6665c55
<?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>
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