Skip to content

Commit f5485c8

Browse files
committed
updated version references to 9.0.1.325
1 parent 2ac5dba commit f5485c8

10 files changed

Lines changed: 15 additions & 15 deletions

Java/src/main/java/com/nuix/javaenginesimple/examples/BasicExportExample.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public static void main(String[] args) throws Exception {
3838
props.load(log4jSettingsStream);
3939
PropertyConfigurator.configure(props);
4040

41-
EngineWrapper wrapper = new EngineWrapper("D:\\engine-releases\\8.8.1.131");
41+
EngineWrapper wrapper = new EngineWrapper("D:\\engine-releases\\9.0.1.325");
4242

4343
LicenseFilter licenseFilter = wrapper.getLicenseFilter();
4444
licenseFilter.setMinWorkers(4);

Java/src/main/java/com/nuix/javaenginesimple/examples/BasicInitializationExample.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public static void main(String[] args) throws Exception {
4747

4848
// Create an instance of engine wrapper, which will do the work of getting the Nuix bits initialized.
4949
// Engine wrapper will need to know what directory you engine release resides.
50-
EngineWrapper wrapper = new EngineWrapper("D:\\engine-releases\\8.8.1.131");
50+
EngineWrapper wrapper = new EngineWrapper("D:\\engine-releases\\9.0.1.325");
5151

5252

5353
// =========================================================================================================

Java/src/main/java/com/nuix/javaenginesimple/examples/BasicSearchAndTagExample.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public static void main(String[] args) throws Exception {
4141
props.load(log4jSettingsStream);
4242
PropertyConfigurator.configure(props);
4343

44-
EngineWrapper wrapper = new EngineWrapper("D:\\engine-releases\\8.8.1.131");
44+
EngineWrapper wrapper = new EngineWrapper("D:\\engine-releases\\9.0.1.325");
4545

4646
LicenseFilter licenseFilter = wrapper.getLicenseFilter();
4747
licenseFilter.setMinWorkers(4);

Java/src/main/java/com/nuix/javaenginesimple/examples/CreateProductionSetExample.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public static void main(String[] args) throws Exception {
3636
props.load(log4jSettingsStream);
3737
PropertyConfigurator.configure(props);
3838

39-
EngineWrapper wrapper = new EngineWrapper("D:\\engine-releases\\8.8.1.131");
39+
EngineWrapper wrapper = new EngineWrapper("D:\\engine-releases\\9.0.1.325");
4040

4141
LicenseFilter licenseFilter = wrapper.getLicenseFilter();
4242
licenseFilter.setMinWorkers(4);

Java/src/main/java/com/nuix/javaenginesimple/examples/CreateSimpleCaseExample.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public static void main(String[] args) throws Exception {
3939
props.load(log4jSettingsStream);
4040
PropertyConfigurator.configure(props);
4141

42-
EngineWrapper wrapper = new EngineWrapper("D:\\engine-releases\\8.8.1.131");
42+
EngineWrapper wrapper = new EngineWrapper("D:\\engine-releases\\9.0.1.325");
4343

4444
LicenseFilter licenseFilter = wrapper.getLicenseFilter();
4545
licenseFilter.setMinWorkers(4);

Java/src/main/java/com/nuix/javaenginesimple/examples/IntermediateSearchAndTagExample.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public static void main(String[] args) throws Exception {
4343
props.load(log4jSettingsStream);
4444
PropertyConfigurator.configure(props);
4545

46-
EngineWrapper wrapper = new EngineWrapper("D:\\engine-releases\\8.8.1.131");
46+
EngineWrapper wrapper = new EngineWrapper("D:\\engine-releases\\9.0.1.325");
4747

4848
LicenseFilter licenseFilter = wrapper.getLicenseFilter();
4949
licenseFilter.setMinWorkers(4);

Java/src/main/java/com/nuix/javaenginesimple/examples/LoadDataIntoCaseExample.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public static void main(String[] args) throws Exception {
4545
props.load(log4jSettingsStream);
4646
PropertyConfigurator.configure(props);
4747

48-
EngineWrapper wrapper = new EngineWrapper("D:\\engine-releases\\8.8.1.131");
48+
EngineWrapper wrapper = new EngineWrapper("D:\\engine-releases\\9.0.1.325");
4949

5050
LicenseFilter licenseFilter = wrapper.getLicenseFilter();
5151
licenseFilter.setMinWorkers(4);

Java/src/main/java/com/nuix/javaenginesimple/examples/OpenCaseExample.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public static void main(String[] args) throws Exception {
3737
props.load(log4jSettingsStream);
3838
PropertyConfigurator.configure(props);
3939

40-
EngineWrapper wrapper = new EngineWrapper("D:\\engine-releases\\8.8.1.131");
40+
EngineWrapper wrapper = new EngineWrapper("D:\\engine-releases\\9.0.1.325");
4141

4242
LicenseFilter licenseFilter = wrapper.getLicenseFilter();
4343
licenseFilter.setMinWorkers(4);

Java/src/main/java/com/nuix/javaenginesimple/examples/UsingTextExample.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public static void main(String[] args) throws Exception {
3636
props.load(log4jSettingsStream);
3737
PropertyConfigurator.configure(props);
3838

39-
EngineWrapper wrapper = new EngineWrapper("D:\\engine-releases\\8.8.1.131");
39+
EngineWrapper wrapper = new EngineWrapper("D:\\engine-releases\\9.0.1.325");
4040

4141
LicenseFilter licenseFilter = wrapper.getLicenseFilter();
4242
licenseFilter.setMinWorkers(4);

README.MD

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ This repository contains a series of examples making use of the Java Engine API
1919

2020
- To begin you will need to [download a release](https://download.nuix.com/releases/engine) of the Nuix Java Engine and extract that somewhere on your local machine. You will want to extract the engine release to a directory with a relatively short name such as the following:
2121
```
22-
D:\engine-releases\8.8.1.131
22+
D:\engine-releases\9.0.1.325
2323
```
2424
- Have a Nuix license available on a Nuix license dongle, available from a Nuix Management Server instance or available from the Nuix Cloud License Server.
2525
- Download a copy of this repository and open the `Java` sub directory in your IDE of choice. Add the contents of the `lib` sub directory of your engine release to your project's build path.
26-
- Ensure that the Windows `PATH` environment variable references the `bin` sub directory of your engine release as well as the `bin\x86` directory. For example if I have my engine distribution located at `D:\engine-releases\8.8.1.131`, I will want to add the following to my `PATH`: `D:\engine-releases\8.8.1.131\bin` and `D:\engine-releases\8.8.1.131\bin\x86`.
26+
- Ensure that the Windows `PATH` environment variable references the `bin` sub directory of your engine release as well as the `bin\x86` directory. For example if I have my engine distribution located at `D:\engine-releases\9.0.1.325`, I will want to add the following to my `PATH`: `D:\engine-releases\9.0.1.325\bin` and `D:\engine-releases\9.0.1.325\bin\x86`.
2727
- Build your project and export a JAR file.
2828

2929
The package `com.nuix.javaenginebaseline.examples` contains a series of examples demonstrating fundamental activities. Each example is executable (they have a static void main method). For example, to run the example [BasicInitializationExample]:
@@ -32,12 +32,12 @@ The package `com.nuix.javaenginebaseline.examples` contains a series of examples
3232
2. Export a JAR file to a location such as `C:\MyCustomNuixApp\MyApp.jar`
3333
3. Execute the `main` method of the class `BasicInitializationExample` using a 64-bit JRE (Java Runtime Environment) with a command along the lines of:
3434
```
35-
C:\MyCustomNuixApp> java -classpath "D:\engine-releases\8.8.1.131\lib\*;.\*" com.nuix.javaenginesimple.examples.BasicInitializationExample
35+
C:\MyCustomNuixApp> java -classpath "D:\engine-releases\9.0.1.325\lib\*;.\*" com.nuix.javaenginesimple.examples.BasicInitializationExample
3636
```
3737

3838
A breakdown of the above command:
3939
- Uses the `-classpath` argument to include on the class path:
40-
- All jars in `D:\engine-releases\8.8.1.131\lib`
40+
- All jars in `D:\engine-releases\9.0.1.325\lib`
4141
- All jars in local directory so that `MyApp.jar` is picked up
4242
- Specifies the fully qualified name (`com.nuix.javaenginesimple.examples.BasicInitializationExample`) of our class [BasicInitializationExample] which contains the `public static void main(String[] args)` method (an entry point into the program).
4343

@@ -141,7 +141,7 @@ For example, if I wish to only acquire a license which:
141141
You configure the license filter to only acquire licenses meeting this criteria with the following code:
142142

143143
```java
144-
EngineWrapper wrapper = new EngineWrapper("D:\\engine-releases\\8.8.1.131");
144+
EngineWrapper wrapper = new EngineWrapper("D:\\engine-releases\\9.0.1.325");
145145

146146
LicenseFilter filter = wrapper.getLicenseFilter();
147147
filter.setMinWorkers(8);
@@ -232,7 +232,7 @@ In the example [NuixDiagnostics.saveDiagnostics][saveDiagnostics] is called when
232232

233233
```java
234234
public static void main(String[] args) throws Exception {
235-
EngineWrapper wrapper = new EngineWrapper("D:\\engine-releases\\8.8.1.131");
235+
EngineWrapper wrapper = new EngineWrapper("D:\\engine-releases\\9.0.1.325");
236236

237237
try {
238238
wrapper.withDongleLicense(new Consumer<Utilities>(){

0 commit comments

Comments
 (0)