-
Notifications
You must be signed in to change notification settings - Fork 299
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create fscrawler-tika and fscrawler-beans modules
Related to #502.
- Loading branch information
Showing
17 changed files
with
222 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<parent> | ||
<artifactId>fscrawler-parent</artifactId> | ||
<groupId>fr.pilato.elasticsearch.crawler</groupId> | ||
<version>2.5-SNAPSHOT</version> | ||
</parent> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<artifactId>fscrawler-beans</artifactId> | ||
<name>FSCrawler Beans</name> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-help-plugin</artifactId> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-resources-plugin</artifactId> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>versions-maven-plugin</artifactId> | ||
</plugin> | ||
<plugin> | ||
<groupId>com.carrotsearch.randomizedtesting</groupId> | ||
<artifactId>junit4-maven-plugin</artifactId> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-enforcer-plugin</artifactId> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
<dependencies> | ||
<!-- Our framework --> | ||
<dependency> | ||
<groupId>fr.pilato.elasticsearch.crawler</groupId> | ||
<artifactId>fscrawler-framework</artifactId> | ||
</dependency> | ||
|
||
<!-- Our Settings --> | ||
<dependency> | ||
<groupId>fr.pilato.elasticsearch.crawler</groupId> | ||
<artifactId>fscrawler-settings</artifactId> | ||
</dependency> | ||
|
||
<!-- Test dependencies --> | ||
<dependency> | ||
<groupId>fr.pilato.elasticsearch.crawler</groupId> | ||
<artifactId>fscrawler-test-framework</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>fr.pilato.elasticsearch.crawler</groupId> | ||
<artifactId>fscrawler-test-documents</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
|
||
</project> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<parent> | ||
<artifactId>fscrawler-parent</artifactId> | ||
<groupId>fr.pilato.elasticsearch.crawler</groupId> | ||
<version>2.5-SNAPSHOT</version> | ||
</parent> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<artifactId>fscrawler-tika</artifactId> | ||
<name>FSCrawler Tika</name> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-help-plugin</artifactId> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-resources-plugin</artifactId> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>versions-maven-plugin</artifactId> | ||
</plugin> | ||
<plugin> | ||
<groupId>com.carrotsearch.randomizedtesting</groupId> | ||
<artifactId>junit4-maven-plugin</artifactId> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-enforcer-plugin</artifactId> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
<dependencies> | ||
<!-- Our framework --> | ||
<dependency> | ||
<groupId>fr.pilato.elasticsearch.crawler</groupId> | ||
<artifactId>fscrawler-framework</artifactId> | ||
</dependency> | ||
|
||
<!-- Our Beans --> | ||
<dependency> | ||
<groupId>fr.pilato.elasticsearch.crawler</groupId> | ||
<artifactId>fscrawler-beans</artifactId> | ||
</dependency> | ||
|
||
<!-- Our Settings --> | ||
<dependency> | ||
<groupId>fr.pilato.elasticsearch.crawler</groupId> | ||
<artifactId>fscrawler-settings</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.apache.tika</groupId> | ||
<artifactId>tika-parsers</artifactId> | ||
</dependency> | ||
<!-- Add some optional dependencies --> | ||
<dependency> | ||
<groupId>org.xerial</groupId> | ||
<artifactId>sqlite-jdbc</artifactId> | ||
</dependency> | ||
|
||
<!-- | ||
For legal reasons (incompatible license), these dependencies are to marked as optional so users who might want | ||
to use them have to provided them manually in the lib dir. | ||
--> | ||
<dependency> | ||
<groupId>com.levigo.jbig2</groupId> | ||
<artifactId>levigo-jbig2-imageio</artifactId> | ||
<optional>true</optional> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.github.jai-imageio</groupId> | ||
<artifactId>jai-imageio-core</artifactId> | ||
<optional>true</optional> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.github.jai-imageio</groupId> | ||
<artifactId>jai-imageio-jpeg2000</artifactId> | ||
<optional>true</optional> | ||
</dependency> | ||
|
||
<!-- For Language detection --> | ||
<dependency> | ||
<groupId>org.apache.tika</groupId> | ||
<artifactId>tika-langdetect</artifactId> | ||
</dependency> | ||
<!--Dependency for parsing remote ssh directory [http://www.jcraft.com/jsch/]--> | ||
<dependency> | ||
<groupId>com.jcraft</groupId> | ||
<artifactId>jsch</artifactId> | ||
</dependency> | ||
|
||
<!-- Test dependencies --> | ||
<dependency> | ||
<groupId>fr.pilato.elasticsearch.crawler</groupId> | ||
<artifactId>fscrawler-test-framework</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>fr.pilato.elasticsearch.crawler</groupId> | ||
<artifactId>fscrawler-test-documents</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
|
||
</dependencies> | ||
|
||
</project> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters