Skip to content

Commit

Permalink
maven fixes and parent pom
Browse files Browse the repository at this point in the history
  • Loading branch information
eugenp committed Apr 4, 2014
1 parent 9ab1ef8 commit a45c5f1
Show file tree
Hide file tree
Showing 5 changed files with 58 additions and 8 deletions.
11 changes: 11 additions & 0 deletions .project
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>parent</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
</buildSpec>
<natures>
</natures>
</projectDescription>
6 changes: 3 additions & 3 deletions guava/pom.xml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<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>org.baeldung</groupId>
<artifactId>spring-rest</artifactId>
<artifactId>guava</artifactId>
<version>0.1-SNAPSHOT</version>

<name>spring-rest</name>
<name>guava</name>

<dependencies>

Expand Down Expand Up @@ -62,7 +62,7 @@
</dependencies>

<build>
<finalName>spring-rest</finalName>
<finalName>guava</finalName>
<resources>
<resource>
<directory>src/main/resources</directory>
Expand Down
6 changes: 3 additions & 3 deletions mockito/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
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>org.baeldung</groupId>
<artifactId>spring-rest</artifactId>
<artifactId>mockito</artifactId>
<version>0.1-SNAPSHOT</version>

<name>spring-rest</name>
<name>mockito</name>

<dependencies>

Expand Down Expand Up @@ -57,7 +57,7 @@
</dependencies>

<build>
<finalName>spring-rest</finalName>
<finalName>mockito</finalName>
<resources>
<resource>
<directory>src/main/resources</directory>
Expand Down
39 changes: 39 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<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>org.baeldung</groupId>
<artifactId>parent</artifactId>
<version>0.1-SNAPSHOT</version>
<name>parent</name>
<packaging>pom</packaging>

<modules>
<module>core-java</module>
<module>experiments</module>
<module>guava</module>
<module>httpclient</module>
<module>jackson</module>
<module>mockito</module>
<module>rest-testing</module>
<module>sandbox</module>
<module>spring-all</module>
<module>spring-exceptions</module>
<module>spring-hibernate3</module>
<module>spring-hibernate4</module>
<module>spring-jpa</module>
<module>spring-mvc-java</module>
<module>spring-mvc-no-xml</module>
<module>spring-mvc-xml</module>
<module>spring-rest</module>
<module>spring-security-basic-auth</module>
<module>spring-security-mvc-custom</module>
<module>spring-security-mvc-digest-auth</module>
<module>spring-security-mvc-login</module>
<module>spring-security-mvc-session</module>
<module>spring-security-rest</module>
<module>spring-security-rest-basic-auth</module>
<module>spring-security-rest-custom</module>
<module>spring-security-rest-digest-auth</module>
<module>spring-security-rest-full</module>
</modules>

</project>
4 changes: 2 additions & 2 deletions sandbox/pom.xml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<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>org.baeldung</groupId>
<artifactId>spring-rest</artifactId>
<artifactId>sandbox</artifactId>
<version>0.1-SNAPSHOT</version>

<name>spring-rest</name>
<name>sandbox</name>

<dependencies>

Expand Down

0 comments on commit a45c5f1

Please sign in to comment.