diff --git a/src/reference/docbook/overview.xml b/src/reference/docbook/overview.xml
index 38f0f53f92..a4de366ef8 100644
--- a/src/reference/docbook/overview.xml
+++ b/src/reference/docbook/overview.xml
@@ -574,7 +574,7 @@ TR: OK. Added to diagram.-->
configure an application, your Maven dependencies will look like
this:
- <dependencies>
+ <dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
@@ -593,7 +593,7 @@ TR: OK. Added to diagram.-->
developer snapshots), you need to specify the repository location in
your Maven configuration. For full releases:
- <repositories>
+ <repositories>
<repository>
<id>com.springsource.repository.maven.release</id>
<url>http://repo.springsource.org/release/</url>
@@ -603,7 +603,7 @@ TR: OK. Added to diagram.-->
For milestones:
- <repositories>
+ <repositories>
<repository>
<id>com.springsource.repository.maven.milestone</id>
<url>http://repo.springsource.org/milestone/</url>
@@ -613,7 +613,7 @@ TR: OK. Added to diagram.-->
And for snapshots:
- <repositories>
+ <repositories>
<repository>
<id>com.springsource.repository.maven.snapshot</id>
<url>http://repo.springsource.org/snapshot/</url>
@@ -625,7 +625,7 @@ TR: OK. Added to diagram.-->
naming convention for the dependencies. The names are usually easy to
guess, e.g. in this case it is:
- <dependencies>
+ <dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>org.springframework.context</artifactId>
@@ -637,7 +637,7 @@ TR: OK. Added to diagram.-->
You also need to declare the location of the repository
explicitly (only the URL is important):
- <repositories>
+ <repositories>
<repository>
<id>com.springsource.repository.bundles.release</id>
<url>http://repository.springsource.com/maven/bundles/release/</url>
@@ -664,7 +664,7 @@ TR: OK. Added to diagram.-->
following resolvers to your
ivysettings.xml:
- <resolvers>
+ <resolvers>
<url name="com.springsource.repository.bundles.release">
@@ -696,7 +696,7 @@ TR: OK. Added to diagram.-->
include in your dependencies section. For example (in
ivy.xml):
- <dependency org="org.springframework"
+ <dependency org="org.springframework"
name="org.springframework.core" rev="3.0.0.RELEASE" conf="compile->runtime"/>
@@ -755,7 +755,7 @@ TR: OK. Added to diagram.-->
the dependency, and because of the way that the Spring dependencies
are declared, you only have to do that once.
- <dependencies>
+ <dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
@@ -803,7 +803,7 @@ TR: OK. Added to diagram.-->
the bridge, the SLF4J API, the binding to Log4J, and the Log4J
implementation itself. In Maven you would do that like this
- <dependencies>
+ <dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
@@ -877,7 +877,7 @@ TR: OK. Added to diagram.-->
of the classpath). So for Maven users this is your dependency
declaration:
- <dependencies>
+ <dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>