mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-05 20:48:22 +00:00
c1f2fc76c2
The semantics of the `boost` parameter for `function_score` changed. This is due to the fact that Lucene now requires that query boosts and top-level boosts are applied the same way.
15 lines
1.4 KiB
Bash
15 lines
1.4 KiB
Bash
#!/bin/sh
|
|
mvn install -DskipTests
|
|
perl dev-tools/src/main/resources/license-check/check_license_and_sha.pl \
|
|
--update distribution/licenses/ distribution/zip/target/releases/elasticsearch-3.0.0-SNAPSHOT.zip elasticsearch-3.0.0-SNAPSHOT
|
|
perl dev-tools/src/main/resources/license-check/check_license_and_sha.pl \
|
|
--update plugins/analysis-icu/licenses/ plugins/analysis-icu/target/releases/analysis-icu-3.0.0-SNAPSHOT.zip analysis-icu-3.0.0-SNAPSHOT
|
|
perl dev-tools/src/main/resources/license-check/check_license_and_sha.pl \
|
|
--update plugins/analysis-kuromoji/licenses/ plugins/analysis-kuromoji/target/releases/analysis-kuromoji-3.0.0-SNAPSHOT.zip analysis-kuromoji-3.0.0-SNAPSHOT
|
|
perl dev-tools/src/main/resources/license-check/check_license_and_sha.pl \
|
|
--update plugins/analysis-phonetic/licenses/ plugins/analysis-phonetic/target/releases/analysis-phonetic-3.0.0-SNAPSHOT.zip analysis-phonetic-3.0.0-SNAPSHOT
|
|
perl dev-tools/src/main/resources/license-check/check_license_and_sha.pl \
|
|
--update plugins/analysis-smartcn/licenses/ plugins/analysis-smartcn/target/releases/analysis-smartcn-3.0.0-SNAPSHOT.zip analysis-smartcn-3.0.0-SNAPSHOT
|
|
perl dev-tools/src/main/resources/license-check/check_license_and_sha.pl \
|
|
--update plugins/analysis-stempel/licenses/ plugins/analysis-stempel/target/releases/analysis-stempel-3.0.0-SNAPSHOT.zip analysis-stempel-3.0.0-SNAPSHOT
|