Hi all,

I'm working on a library, and I thought I'd be good forward looking citizen and add module-info.java. I've never used module-info before. I have pom dependencies on

   <artifactId>org-openide-util</artifactId>
   <artifactId>org-openide-util-lookup</artifactId>

It took a while, but I finally found

   requires org.openide.util.RELEASE310;
   requires org.openide.util.lookup.RELEASE310;

Running "mvn clean install" on the command line I see
[ERROR] error: the unnamed module reads package org.openide.util from both org.openide.util.RELEASE310 and org.openide.util.lookup.RELEASE310
The error repeats several times.

Is it possible to do this? How? "Moditect" doesn't sound like much fun, but I've only seen a reference to it, not read any documentation.

-ernie

Reply via email to