Hi Priyanka
Yes, adding the dependency to the pom should be sufficient.
In case you don't know, it is a good practice to do the following thing:
To the parent pom of your bundle, add the complete snippet including the
version to the dependencyManagement section, e.g.:
[code] <dependencyManagement>
<dependencies>
<dependency>
<groupId>info.magnolia.rest</groupId>
<artifactId>magnolia-rest-tools</artifactId>
<version>1.1.1</version>
</dependency>
</dependencies>
</dependencyManagement>[/code]
To the pom of your webapp, add the snippet without the version:
[code] <dependencies>
<dependency>
<groupId>info.magnolia.rest</groupId>
<artifactId>magnolia-rest-tools</artifactId>
<version>1.1.1</version>
</dependency>
</dependencies>[/code]
I hope this helps :-)
cheers,
Christoph
--
Context is everything:
http://forum.magnolia-cms.com/forum/thread.html?threadId=2cb0c1b8-4fcd-4d9d-a022-54ea78b90a03
----------------------------------------------------------------
For list details, see http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: <[email protected]>
----------------------------------------------------------------