Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
essiembre committed Jun 3, 2016
2 parents cd280a1 + f1f8f6b commit f5a060f
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 6 deletions.
4 changes: 2 additions & 2 deletions norconex-collector-filesystem/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.norconex.collectors</groupId>
<artifactId>norconex-collector-filesystem</artifactId>
<version>2.4.0</version>
<version>2.5.0</version>
<name>Norconex Filesystem Collector</name>

<properties>
Expand Down Expand Up @@ -60,7 +60,7 @@
<dependency>
<groupId>com.norconex.collectors</groupId>
<artifactId>norconex-collector-core</artifactId>
<version>1.4.0</version>
<version>1.5.0</version>
</dependency>
<dependency>
<groupId>joda-time</groupId>
Expand Down
13 changes: 13 additions & 0 deletions norconex-collector-filesystem/src/changes/changes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,19 @@
</properties>
<body>

<release version="2.5.0" date="2016-06-03" description="Minor release">
<action dev="essiembre" type="update">
MVStore is now the default URL crawl store.
</action>
<action dev="essiembre" type="update">
Maven dependency updates: Norconex Collector Core 1.5.0.
</action>
<action dev="essiembre" type="update">
JDBCCrawlDataStoreFactory now deprecated in favor of
BasicJDBCCrawlDataStoreFactory from Collector Core.
</action>
</release>

<release version="2.4.0" date="2016-02-28" description="Minor release">
<action dev="essiembre" type="add">
Now supports specifying relative paths in startPaths (for local
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

import com.norconex.collector.core.checksum.IMetadataChecksummer;
import com.norconex.collector.core.crawler.AbstractCrawlerConfig;
import com.norconex.collector.core.data.store.impl.mapdb.MapDBCrawlDataStoreFactory;
import com.norconex.collector.core.data.store.impl.mvstore.MVStoreCrawlDataStoreFactory;
import com.norconex.collector.fs.checksum.impl.FileMetadataChecksummer;
import com.norconex.collector.fs.doc.IFileDocumentProcessor;
import com.norconex.commons.lang.config.ConfigurationUtil;
Expand Down Expand Up @@ -59,7 +59,7 @@ public class FilesystemCrawlerConfig extends AbstractCrawlerConfig {

public FilesystemCrawlerConfig() {
super();
setCrawlDataStoreFactory(new MapDBCrawlDataStoreFactory());
setCrawlDataStoreFactory(new MVStoreCrawlDataStoreFactory());
}

public String[] getStartPaths() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright 2014 Norconex Inc.
/* Copyright 2014-2016 Norconex Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -16,6 +16,7 @@

import com.norconex.collector.core.data.store.ICrawlDataStore;
import com.norconex.collector.core.data.store.impl.jdbc.AbstractJDBCDataStoreFactory;
import com.norconex.collector.core.data.store.impl.jdbc.BasicJDBCCrawlDataStoreFactory;
import com.norconex.collector.core.data.store.impl.jdbc.BasicJDBCSerializer;
import com.norconex.collector.core.data.store.impl.jdbc.IJDBCSerializer;
import com.norconex.collector.core.data.store.impl.jdbc.JDBCCrawlDataStore.Database;
Expand All @@ -34,7 +35,9 @@
* </pre>
*
* @author Pascal Essiembre
* @deprecated Since 1.5.0, use {@link BasicJDBCCrawlDataStoreFactory}
*/
@Deprecated
public class JDBCCrawlDataStoreFactory extends AbstractJDBCDataStoreFactory {

public JDBCCrawlDataStoreFactory() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@
options. Please refer to committer for complete documentation.
Below is an example using the FileSystemCommitter.
-->
<committer class="$committer.core.impl.FileSystemCommitter">
<committer class="${committer}.core.impl.FileSystemCommitter">
<directory>$workdir\crawledFiles</directory>
</committer>

Expand Down

0 comments on commit f5a060f

Please sign in to comment.