From: <lor...@us...> - 2011-06-14 08:25:02
|
Revision: 2871 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=2871&view=rev Author: lorenz_b Date: 2011-06-14 08:24:56 +0000 (Tue, 14 Jun 2011) Log Message: ----------- Cleaned up pom file to work with new SOLR version, which needs SLF libs <= 1.5.5. Modified Paths: -------------- trunk/components-ext/pom.xml Modified: trunk/components-ext/pom.xml =================================================================== --- trunk/components-ext/pom.xml 2011-06-14 04:11:22 UTC (rev 2870) +++ trunk/components-ext/pom.xml 2011-06-14 08:24:56 UTC (rev 2871) @@ -14,19 +14,14 @@ <id>Simmetrics</id> <url>http://maven.mse.jhu.edu/m2repository/</url> </repository> - <!-- + <!-- <repository> <id>Harvard Med</id> <url>http://repo.open.med.harvard.edu/nexus/content/repositories/public/</url> + </repository> --> <repository> - <id>Harvard Med</id> - <url>http://repo.open.med.harvard.edu/nexus/content/repositories/public/</url> - </repository>--> - <repository> <id>Annolab</id> <url>http://annolab.org/m2/releases/</url> </repository> - <!-- <repository> - <id>Mirror for WSTX</id> - <url>http://mirrors.ibiblio.org/pub/mirrors/maven2/</url> - </repository> --> + <!-- <repository> <id>Mirror for WSTX</id> <url>http://mirrors.ibiblio.org/pub/mirrors/maven2/</url> + </repository> --> </repositories> <parent> @@ -38,6 +33,16 @@ <dependency> <groupId>org.dllearner</groupId> <artifactId>components-core</artifactId> + <exclusions> + <exclusion> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-api</artifactId> + </exclusion> + <exclusion> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-log4j12</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>com.jamonapi</groupId> @@ -51,6 +56,11 @@ <scope>compile</scope> </dependency> <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-api</artifactId> + <version>1.5.5</version> + </dependency> + <dependency> <groupId>edu.stanford</groupId> <artifactId>postagger</artifactId> <version>3.0.2</version> @@ -97,14 +107,6 @@ <scope>compile</scope> </dependency> <dependency> - <groupId>com.hp.hpl.jena</groupId> - <artifactId>jena</artifactId> - </dependency> - <dependency> - <groupId>com.hp.hpl.jena</groupId> - <artifactId>arq</artifactId> - </dependency> - <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |