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
963409d6
Commit
963409d6
authored
Nov 27, 2020
by
Colin DAMON
Browse files
Init project
parent
734bd362
Changes
5
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
963409d6
...
...
@@ -15,3 +15,4 @@ include:
-
local
:
"
/string-calculator-2/.gitlab-ci.yml"
-
local
:
"
/trip-service-kata/.gitlab-ci.yml"
-
local
:
"
/tcr-roman-numerals/.gitlab-ci.yml"
-
local
:
"
/java-h2g2/.gitlab-ci.yml"
README.md
View file @
963409d6
...
...
@@ -37,3 +37,4 @@ Ce dépôt Git a pour but de partager les différents ateliers pouvant être ré
|
[
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 | Moyenne |
|
[
H2G2 en Java
](
/java-h2g2
)
| Kata | Moyenne |
java-h2g2/.gitlab-ci.yml
0 → 100644
View file @
963409d6
package-java-h2g2
:
variables
:
PROJECT_FOLDER
:
"
java-h2g2"
extends
:
.java
only
:
refs
:
-
master
-
merge_requests
changes
:
-
"
.gitlab-common-ci.yml"
-
"
java-h2g2/**/*"
java-h2g2/README.md
0 → 100644
View file @
963409d6
# Java h2g2
Résolution en TDD et en Java du kata
[
Potter
](
https://codingdojo.org/kata/Potter/
)
renommé h2g2 pour l'occasion.
-
**Auteurs**
: Anthony REY et Colin DAMON
-
**Date**
: 27/11/2020
-
**Langage**
: Java
-
**Niveau**
: Moyen
-
**Replay**
: TODO
java-h2g2/pom.xml
0 → 100644
View file @
963409d6
<?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>
java-h2g2
</artifactId>
<name>
JavaH2G2
</name>
<developers>
<developer>
<email>
arey@ippon.fr
</email>
<name>
Anthony REY
</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