From: <lor...@us...> - 2011-08-22 09:18:04
|
Revision: 3083 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=3083&view=rev Author: lorenz_b Date: 2011-08-22 09:17:56 +0000 (Mon, 22 Aug 2011) Log Message: ----------- Cleaned up pom.xml. Removed unused classes. Modified Paths: -------------- trunk/components-core/pom.xml Removed Paths: ------------- trunk/components-core/src/main/java/org/dllearner/core/config/OurStringTrimmerEditor.java trunk/components-core/src/test/java/org/dllearner/examples/ Modified: trunk/components-core/pom.xml =================================================================== --- trunk/components-core/pom.xml 2011-08-22 07:28:14 UTC (rev 3082) +++ trunk/components-core/pom.xml 2011-08-22 09:17:56 UTC (rev 3083) @@ -152,12 +152,6 @@ </dependency> <dependency> - <groupId>org.projectlombok</groupId> - <artifactId>lombok</artifactId> - <scope>provided</scope> - </dependency> - - <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> </dependency> @@ -177,38 +171,22 @@ </exclusions> </dependency> - <!--SwingX is in central--> - <dependency> - <groupId>org.swinglabs</groupId> - <artifactId>swingx</artifactId> - </dependency> - - <!--JSON is in Central--> <dependency> <groupId>org.json</groupId> <artifactId>json</artifactId> </dependency> - <dependency> <groupId>net.sf.jopt-simple</groupId> <artifactId>jopt-simple</artifactId> </dependency> - - <!--Lucene is in Central--> <dependency> - <groupId>org.apache.lucene</groupId> - <artifactId>lucene-core</artifactId> - </dependency> - - <dependency> <groupId>org.ini4j</groupId> <artifactId>ini4j</artifactId> </dependency> - <dependency> <groupId>xmlbeans</groupId> <artifactId>xbean</artifactId> @@ -275,12 +253,8 @@ <version>1.0</version> </dependency> + <dependency> - <groupId>org.springframework</groupId> - <artifactId>spring-beans</artifactId> - <version>3.0.5.RELEASE</version> - </dependency> - <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.5.8</version> Deleted: trunk/components-core/src/main/java/org/dllearner/core/config/OurStringTrimmerEditor.java =================================================================== --- trunk/components-core/src/main/java/org/dllearner/core/config/OurStringTrimmerEditor.java 2011-08-22 07:28:14 UTC (rev 3082) +++ trunk/components-core/src/main/java/org/dllearner/core/config/OurStringTrimmerEditor.java 2011-08-22 09:17:56 UTC (rev 3083) @@ -1,41 +0,0 @@ -/** - * Copyright (C) 2007-2011, Jens Lehmann - * - * This file is part of DL-Learner. - * - * DL-Learner is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 3 of the License, or - * (at your option) any later version. - * - * DL-Learner is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - */ - -package org.dllearner.core.config; - -/** - * Created by IntelliJ IDEA. - * User: Chris - * Date: 7/26/11 - * Time: 10:17 PM - * <p/> - * Making a basic extension so I can get a default constructor so that using reflection is simpler. - * - * I'm extending a Spring provided class for this. - */ -public class OurStringTrimmerEditor extends org.springframework.beans.propertyeditors.StringTrimmerEditor { - - - /** - * Default Constructor - */ - public OurStringTrimmerEditor() { - super(true); - } -} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |