Skip to content

Commit a45c5f1

Browse files
author
eugenp
committed
maven fixes and parent pom
1 parent 9ab1ef8 commit a45c5f1

File tree

5 files changed

+58
-8
lines changed

5 files changed

+58
-8
lines changed

.project

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>parent</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
</buildSpec>
9+
<natures>
10+
</natures>
11+
</projectDescription>

guava/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<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">
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>org.baeldung</groupId>
4-
<artifactId>spring-rest</artifactId>
4+
<artifactId>guava</artifactId>
55
<version>0.1-SNAPSHOT</version>
66

7-
<name>spring-rest</name>
7+
<name>guava</name>
88

99
<dependencies>
1010

@@ -62,7 +62,7 @@
6262
</dependencies>
6363

6464
<build>
65-
<finalName>spring-rest</finalName>
65+
<finalName>guava</finalName>
6666
<resources>
6767
<resource>
6868
<directory>src/main/resources</directory>

mockito/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>org.baeldung</groupId>
5-
<artifactId>spring-rest</artifactId>
5+
<artifactId>mockito</artifactId>
66
<version>0.1-SNAPSHOT</version>
77

8-
<name>spring-rest</name>
8+
<name>mockito</name>
99

1010
<dependencies>
1111

@@ -57,7 +57,7 @@
5757
</dependencies>
5858

5959
<build>
60-
<finalName>spring-rest</finalName>
60+
<finalName>mockito</finalName>
6161
<resources>
6262
<resource>
6363
<directory>src/main/resources</directory>

pom.xml

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<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">
2+
<modelVersion>4.0.0</modelVersion>
3+
<groupId>org.baeldung</groupId>
4+
<artifactId>parent</artifactId>
5+
<version>0.1-SNAPSHOT</version>
6+
<name>parent</name>
7+
<packaging>pom</packaging>
8+
9+
<modules>
10+
<module>core-java</module>
11+
<module>experiments</module>
12+
<module>guava</module>
13+
<module>httpclient</module>
14+
<module>jackson</module>
15+
<module>mockito</module>
16+
<module>rest-testing</module>
17+
<module>sandbox</module>
18+
<module>spring-all</module>
19+
<module>spring-exceptions</module>
20+
<module>spring-hibernate3</module>
21+
<module>spring-hibernate4</module>
22+
<module>spring-jpa</module>
23+
<module>spring-mvc-java</module>
24+
<module>spring-mvc-no-xml</module>
25+
<module>spring-mvc-xml</module>
26+
<module>spring-rest</module>
27+
<module>spring-security-basic-auth</module>
28+
<module>spring-security-mvc-custom</module>
29+
<module>spring-security-mvc-digest-auth</module>
30+
<module>spring-security-mvc-login</module>
31+
<module>spring-security-mvc-session</module>
32+
<module>spring-security-rest</module>
33+
<module>spring-security-rest-basic-auth</module>
34+
<module>spring-security-rest-custom</module>
35+
<module>spring-security-rest-digest-auth</module>
36+
<module>spring-security-rest-full</module>
37+
</modules>
38+
39+
</project>

sandbox/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<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">
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>org.baeldung</groupId>
4-
<artifactId>spring-rest</artifactId>
4+
<artifactId>sandbox</artifactId>
55
<version>0.1-SNAPSHOT</version>
66

7-
<name>spring-rest</name>
7+
<name>sandbox</name>
88

99
<dependencies>
1010

0 commit comments

Comments
 (0)