Skip to content

Commit b5e65ec

Browse files
8238434: Ensemble: Update version of Lucene to 7.7.2
Reviewed-by: aghaisas
1 parent e986459 commit b5e65ec

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

apps/samples/.classpath

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
<classpathentry kind="src" path="Ensemble8/src/compiletime/java"/>
1313
<classpathentry kind="src" path="Ensemble8/src/generated/java"/>
1414
<classpathentry kind="src" path="Ensemble8/src/generated/resources"/>
15-
<classpathentry kind="lib" path="Ensemble8/lib/lucene-core-7.7.1.jar"/>
16-
<classpathentry kind="lib" path="Ensemble8/lib/lucene-grouping-7.7.1.jar"/>
17-
<classpathentry kind="lib" path="Ensemble8/lib/lucene-queryparser-7.7.1.jar"/>
15+
<classpathentry kind="lib" path="Ensemble8/lib/lucene-core-7.7.2.jar"/>
16+
<classpathentry kind="lib" path="Ensemble8/lib/lucene-grouping-7.7.2.jar"/>
17+
<classpathentry kind="lib" path="Ensemble8/lib/lucene-queryparser-7.7.2.jar"/>
1818
<classpathentry kind="src" path="MandelbrotSet/src"/>
1919
<classpathentry kind="src" path="Modena/src/main/java"/>
2020
<classpathentry kind="src" path="Modena/src/main/resources"/>

apps/samples/Ensemble8/UPDATING-lucene.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ To update to a new version of Lucene:
1313
gradle clean
1414
gradle sdk apps
1515

16-
NOTE: if upgrading to a new major version there are usually compilation errors that need to be fixed.
16+
NOTE: if upgrading to a new major version there are usually compilation or runtime errors that need to be fixed.
1717

1818

19-
3. Regenerate the index files:
19+
3. Regenerate the index files. This step can be skipped if only the "bugfix" number (the third digit) of the release changes:
2020

2121
$ cd apps/samples/Ensemble8
2222
$ rm -rf src/generated/resources/ensemble/search/index

apps/samples/Ensemble8/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ apply plugin:'application'
44
def mainClassName = "ensemble.EnsembleApp"
55

66
def FileCollection apachecp = files(
7-
"./lib/lucene-core-7.7.1.jar",
8-
"./lib/lucene-grouping-7.7.1.jar",
9-
"./lib/lucene-queryparser-7.7.1.jar")
7+
"./lib/lucene-core-7.7.2.jar",
8+
"./lib/lucene-grouping-7.7.2.jar",
9+
"./lib/lucene-queryparser-7.7.2.jar")
1010

1111
sourceSets {
1212
main {

apps/samples/Ensemble8/legal/lucene.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Apache Lucene v7.7.1
1+
## Apache Lucene v7.7.2
22

33
### Apache Lucene Notice
44
```

apps/samples/Ensemble8/nbproject/project.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ dist.jar=${dist.dir}/Ensemble8.jar
3131
dist.javadoc.dir=${dist.dir}/javadoc
3232
endorsed.classpath=
3333
excludes=
34-
lucene.version=7.7.1
34+
lucene.version=7.7.2
3535
file.reference.lucene-core.jar=lib/lucene-core-${lucene.version}.jar
3636
file.reference.lucene-grouping.jar=lib/lucene-grouping-${lucene.version}.jar
3737
file.reference.lucene-queryparser.jar=lib/lucene-queryparser-${lucene.version}.jar

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -4148,7 +4148,7 @@ project(":apps") {
41484148
// The apps build is Ant based, we will exec ant from gradle.
41494149

41504150
// Download the Lucene libraries needed for the Ensemble8 app
4151-
def luceneVersion = "7.7.1"
4151+
def luceneVersion = "7.7.2"
41524152
getConfigurations().create("lucene");
41534153
dependencies {
41544154
lucene group: "org.apache.lucene", name: "lucene-core", version: luceneVersion

0 commit comments

Comments
 (0)