-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
36 lines (32 loc) · 1.23 KB
/
pom.xml
File metadata and controls
36 lines (32 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<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>
<groupId>com.codesai.katas-java</groupId>
<artifactId>katas-java-parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
<module>argent-rose</module>
<module>course-duration</module>
<module>tire-pressure-variation</module>
<module>tire-pressure-variation-broken-dependencies</module>
<module>breaking-dependencies/checkout-with-side-effects</module>
<module>breaking-dependencies/problematic-discount</module>
<module>breaking-dependencies/problematic-searcher</module>
<module>ugly-trivia</module>
<module>ugly-trivia-broken-dependencies</module>
<module>ugly-trivia-approval</module>
<module>gilded-rose</module>
</modules>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.openrewrite.maven</groupId>
<artifactId>rewrite-maven-plugin</artifactId>
<version>6.28.0</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>