Skip to content

Commit 3fdcc90

Browse files
committed
Sandbox URL
Up to date URL for the latest sandbox
1 parent bea71c4 commit 3fdcc90

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

java/AoJ/README.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,14 @@ better to get it to the community as soon as we could. We hope that you agree.
3636
## Building AoJ
3737

3838
AoJ and ADBA require JDK 9 or later. Download ADBA from the
39-
[OpenJDK sandbox](http://hg.openjdk.java.net/jdk/sandbox/file/9d3b0eb749a9/src/jdk.incubator.adba).
40-
It does not have any dependencies outside of Java SE. Download AoJ from
39+
[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.
40+
41+
For building the API modules:
42+
$ mkdir -p mods/jdk.incubator.adba
43+
$ javac -d mods/jdk.incubator.adba/ $(find jdk.incubator.adba -name "*.java")
44+
$ jar --create --file=mlib/jdk.incubator.adba.jar --module-version=1.0 -C mods/jdk.incubator.adba/ .
45+
46+
Download AoJ from
4147
[GitHub](https://github.com/oracle/oracle-db-examples/tree/master/java/AoJ). Both
4248
are modularized so be sure to include the module-info.java files. AoJ depends on
4349
ADBA. The AoJ sample file depends on JUnit which is included with most IDEs but is
@@ -106,7 +112,7 @@ introduction to ADBA see the [JavaOne 2017 presentation](http://www.oracle.com/t
106112
}
107113
// wait for the async tasks to complete before exiting
108114
ForkJoinPool.commonPool().awaitQuiescence(1, TimeUnit.MINUTES);
109-
}```
115+
}````
110116
111117
112118
## AoJ Design Spec in 100 words or less

0 commit comments

Comments
 (0)