File tree 6 files changed +11
-11
lines changed
6 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 12
12
<classpathentry kind =" src" path =" Ensemble8/src/compiletime/java" />
13
13
<classpathentry kind =" src" path =" Ensemble8/src/generated/java" />
14
14
<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" />
18
18
<classpathentry kind =" src" path =" MandelbrotSet/src" />
19
19
<classpathentry kind =" src" path =" Modena/src/main/java" />
20
20
<classpathentry kind =" src" path =" Modena/src/main/resources" />
Original file line number Diff line number Diff line change @@ -13,10 +13,10 @@ To update to a new version of Lucene:
13
13
gradle clean
14
14
gradle sdk apps
15
15
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.
17
17
18
18
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 :
20
20
21
21
$ cd apps/samples/Ensemble8
22
22
$ rm -rf src/generated/resources/ensemble/search/index
Original file line number Diff line number Diff line change @@ -4,9 +4,9 @@ apply plugin:'application'
4
4
def mainClassName = " ensemble.EnsembleApp"
5
5
6
6
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" )
10
10
11
11
sourceSets {
12
12
main {
Original file line number Diff line number Diff line change 1
- ## Apache Lucene v7.7.1
1
+ ## Apache Lucene v7.7.2
2
2
3
3
### Apache Lucene Notice
4
4
```
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ dist.jar=${dist.dir}/Ensemble8.jar
31
31
dist.javadoc.dir =${dist.dir}/javadoc
32
32
endorsed.classpath =
33
33
excludes =
34
- lucene.version =7.7.1
34
+ lucene.version =7.7.2
35
35
file.reference.lucene-core.jar =lib/lucene-core-${lucene.version}.jar
36
36
file.reference.lucene-grouping.jar =lib/lucene-grouping-${lucene.version}.jar
37
37
file.reference.lucene-queryparser.jar =lib/lucene-queryparser-${lucene.version}.jar
Original file line number Diff line number Diff line change @@ -4148,7 +4148,7 @@ project(":apps") {
4148
4148
// The apps build is Ant based, we will exec ant from gradle.
4149
4149
4150
4150
// Download the Lucene libraries needed for the Ensemble8 app
4151
- def luceneVersion = " 7.7.1 "
4151
+ def luceneVersion = " 7.7.2 "
4152
4152
getConfigurations(). create(" lucene" );
4153
4153
dependencies {
4154
4154
lucene group : " org.apache.lucene" , name : " lucene-core" , version : luceneVersion
You can’t perform that action at this time.
0 commit comments