Skip to content

Commit d93003d

Browse files
committed
Fixed command lines
Command lines for building the API
1 parent 3fdcc90 commit d93003d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

java/AoJ/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,11 @@ AoJ and ADBA require JDK 9 or later. Download ADBA from the
3939
[OpenJDK sandbox](http://hg.openjdk.java.net/jdk/sandbox/file/JDK-8188051-branch/src/jdk.incubator.adba/share/classes). It does not have any dependencies outside of Java SE.
4040

4141
For building the API modules:
42+
```
4243
$ mkdir -p mods/jdk.incubator.adba
4344
$ javac -d mods/jdk.incubator.adba/ $(find jdk.incubator.adba -name "*.java")
4445
$ jar --create --file=mlib/jdk.incubator.adba.jar --module-version=1.0 -C mods/jdk.incubator.adba/ .
45-
46+
````
4647
Download AoJ from
4748
[GitHub](https://github.com/oracle/oracle-db-examples/tree/master/java/AoJ). Both
4849
are modularized so be sure to include the module-info.java files. AoJ depends on
@@ -112,7 +113,7 @@ introduction to ADBA see the [JavaOne 2017 presentation](http://www.oracle.com/t
112113
}
113114
// wait for the async tasks to complete before exiting
114115
ForkJoinPool.commonPool().awaitQuiescence(1, TimeUnit.MINUTES);
115-
}````
116+
}
116117
117118
118119
## AoJ Design Spec in 100 words or less

0 commit comments

Comments
 (0)