Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated README files to use version 3.2.0 #1463

Merged
merged 1 commit into from
Feb 4, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ StormCrawler requires Java 11 or above. To execute tests, it requires you to hav
Once Storm is installed, the easiest way to get started is to generate a new StormCrawler project following the instructions below:

```shell
mvn archetype:generate -DarchetypeGroupId=org.apache.stormcrawler -DarchetypeArtifactId=stormcrawler-archetype -DarchetypeVersion=3.1.0
mvn archetype:generate -DarchetypeGroupId=org.apache.stormcrawler -DarchetypeArtifactId=stormcrawler-archetype -DarchetypeVersion=3.2.0

```

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.
Expand Down
2 changes: 1 addition & 1 deletion external/opensearch/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Getting started

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

`mvn archetype:generate -DarchetypeGroupId=org.apache.stormcrawler -DarchetypeArtifactId=stormcrawler-opensearch-archetype -DarchetypeVersion=3.1.0`
`mvn archetype:generate -DarchetypeGroupId=org.apache.stormcrawler -DarchetypeArtifactId=stormcrawler-opensearch-archetype -DarchetypeVersion=3.2.0`

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.

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:", "Apache StormCrawler 3.1.0 http://stormcrawler.net/");
fields.put("software:", "Apache StormCrawler 3.2.0 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"
- "Apache StormCrawler 3.1.0 http://stormcrawler.net/"
- "Apache StormCrawler 3.2.0 http://stormcrawler.net/"
- name: "put"
args:
- "format"
Expand Down