SOLR-560 -- adding maven dependency for slfj4

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@696543 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Ryan McKinley 2008-09-18 02:33:35 +00:00
parent 3c9db8e311
commit 458f07b7ad
1 changed files with 16 additions and 5 deletions

View File

@ -37,11 +37,22 @@
<packaging>jar</packaging>
<dependencies>
<!--
I believe that solr-common has no dependencies outside
of the JRE 1.5. Feel free to modify if I've missed
something that belongs here.
-->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.5.3</version>
</dependency>
<!--
Your app will need an slf4j implementation, it does not matter which one...
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.5.3</version>
</dependency>
-->
</dependencies>
</project>