Another temporary javac hack please

Jonathan Gibbons Jonathan.Gibbons at Sun.COM
Mon May 18 08:05:30 PDT 2009


As a short term hack, I can do this, but longer term I still think we
need a better way of recognizing names which identify platform
modules., either using modifiers or a more general naming scheme
that allows for different types of the platform (meaning versions in
the sense of Java ME, Java SE, etc.

As a right now hack, you could put an empty module-info.java
with the right name on your compilation module path.

-- Jon

On May 17, 2009, at 9:41 PM, Mark Reinhold wrote:

> I need to be able to write module-info files like this:
>
>    module demo @ 0.1 {
> 	requires jdk.base @ 7-ea;
>    }
>
> Right now the above declaration causes javac to look for a jdk.base
> module in the module path, and naturally it doesn't find one.  That
> will change over time, but for now javac is getting all JDK classes
> from the usual boot class path.
>
> For demo purposes I need to write such declarations in source files
> and interpret them at install time.  Would it make sense to add
> another short-term hack which would cause javac to avoid interpreting
> dependences upon any "platform" module, but still pass them through
> to the resulting module-info.class file?
>
> Thanks,
> - Mark




More information about the jigsaw-dev mailing list