Skip to content

Commit

Permalink
Release 2.11
Browse files Browse the repository at this point in the history
Signed-off-by: Julien Nioche <[email protected]>
  • Loading branch information
jnioche committed Jan 2, 2024
1 parent 6608616 commit 5392fc9
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ The version of Apache Storm to install must match the one defined in the pom.xml

Once Storm is installed, the easiest way to get started is to generate a brand new StormCrawler project using \:

`mvn archetype:generate -DarchetypeGroupId=com.digitalpebble.stormcrawler -DarchetypeArtifactId=storm-crawler-archetype -DarchetypeVersion=2.10`
`mvn archetype:generate -DarchetypeGroupId=com.digitalpebble.stormcrawler -DarchetypeArtifactId=storm-crawler-archetype -DarchetypeVersion=2.11`

You'll be asked to enter a groupId (e.g. com.mycompany.crawler), an artefactId (e.g. stormcrawler), a version and package name.
You'll be asked to enter a groupId (e.g. com.mycompany.crawler), an artefactId (e.g. stormcrawler), a version, a package name and details about the user agent to use.

This will not only create a fully formed project containing a POM with the dependency above but also the default resource files, a default CrawlTopology class and a configuration file. Enter the directory you just created (should be the same as the artefactId you specified earlier) and follow the instructions on the README file.

Expand Down
4 changes: 2 additions & 2 deletions external/elasticsearch/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ Getting started

Use the archetype for Elasticsearch with:

`mvn archetype:generate -DarchetypeGroupId=com.digitalpebble.stormcrawler -DarchetypeArtifactId=storm-crawler-elasticsearch-archetype -DarchetypeVersion=2.10`
`mvn archetype:generate -DarchetypeGroupId=com.digitalpebble.stormcrawler -DarchetypeArtifactId=storm-crawler-elasticsearch-archetype -DarchetypeVersion=2.11`

You'll be asked to enter a groupId (e.g. com.mycompany.crawler), an artefactId (e.g. stormcrawler), a version and package name.
You'll be asked to enter a groupId (e.g. com.mycompany.crawler), an artefactId (e.g. stormcrawler), a version, a package name and details about the user agent to use.

This will not only create a fully formed project containing a POM with the dependency above but also a set of resources, configuration files and a topology class. Enter the directory you just created (should be the same as the artefactId you specified earlier) and follow the instructions on the README file.

Expand Down
4 changes: 2 additions & 2 deletions external/opensearch/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ Getting started

The easiest way is currently to use the archetype for OpenSearch with:

`mvn archetype:generate -DarchetypeGroupId=com.digitalpebble.stormcrawler -DarchetypeArtifactId=storm-crawler-opensearch-archetype -DarchetypeVersion=2.10`
`mvn archetype:generate -DarchetypeGroupId=com.digitalpebble.stormcrawler -DarchetypeArtifactId=storm-crawler-opensearch-archetype -DarchetypeVersion=2.11`

You'll be asked to enter a groupId (e.g. com.mycompany.crawler), an artefactId (e.g. stormcrawler), a version and package name.
You'll be asked to enter a groupId (e.g. com.mycompany.crawler), an artefactId (e.g. stormcrawler), a version, a package name and details about the user agent to use.

This will not only create a fully formed project containing a POM with the dependency above but also a set of resources, configuration files and a topology class. Enter the directory you just created (should be the same as the artefactId you specified earlier) and follow the instructions on the README file.

Expand Down
4 changes: 2 additions & 2 deletions external/warc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ To configure the WARCHdfsBolt, include the following snippet in your crawl topol
.withPath(warcFilePath);

Map<String,String> fields = new HashMap<>();
fields.put("software:", "StormCrawler 2.10 http://stormcrawler.net/");
fields.put("software:", "StormCrawler 2.11 http://stormcrawler.net/");
fields.put("format", "WARC File Format 1.0");
fields.put("conformsTo:",
"https://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.0/");
Expand Down Expand Up @@ -80,7 +80,7 @@ components:
- name: "put"
args:
- "software"
- "StormCrawler 2.10 http://stormcrawler.net/"
- "StormCrawler 2.11 http://stormcrawler.net/"
- name: "put"
args:
- "format"
Expand Down

0 comments on commit 5392fc9

Please sign in to comment.