Skip to content

Commit 873ef18

Browse files
committed
fix3
1 parent fc46d5c commit 873ef18

5 files changed

Lines changed: 29 additions & 9 deletions

File tree

pom.xml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,7 @@
2323
</properties>
2424

2525
<modules>
26-
<module>statistics/dto</module>
27-
<module>statistics/client</module>
28-
<module>statistics/server</module>
26+
<module>statistics</module>
2927
<module>ewm-service</module>
3028
</modules>
3129

statistics/client/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66

77
<parent>
88
<groupId>ru.practicum</groupId>
9-
<artifactId>explore-with-me</artifactId>
9+
<artifactId>statistics</artifactId>
1010
<version>0.0.1-SNAPSHOT</version>
11-
<relativePath>../../pom.xml</relativePath>
11+
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313

1414
<artifactId>statistics-client</artifactId>

statistics/dto/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66

77
<parent>
88
<groupId>ru.practicum</groupId>
9-
<artifactId>explore-with-me</artifactId>
9+
<artifactId>statistics</artifactId>
1010
<version>0.0.1-SNAPSHOT</version>
11-
<relativePath>../../pom.xml</relativePath>
11+
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313

1414
<artifactId>statistics-dto</artifactId>

statistics/pom.xml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<parent>
8+
<groupId>ru.practicum</groupId>
9+
<artifactId>explore-with-me</artifactId>
10+
<version>0.0.1-SNAPSHOT</version>
11+
<relativePath>../pom.xml</relativePath>
12+
</parent>
13+
14+
<artifactId>statistics</artifactId>
15+
<packaging>pom</packaging>
16+
17+
<modules>
18+
<module>dto</module>
19+
<module>client</module>
20+
<module>server</module>
21+
</modules>
22+
</project>

statistics/server/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66

77
<parent>
88
<groupId>ru.practicum</groupId>
9-
<artifactId>explore-with-me</artifactId>
9+
<artifactId>statistics</artifactId>
1010
<version>0.0.1-SNAPSHOT</version>
11-
<relativePath>../../pom.xml</relativePath>
11+
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313

1414
<artifactId>statistics-server</artifactId>

0 commit comments

Comments
 (0)