Dne pondělí 12. října 2020 18:43:03 CEST, Jaroslav Tulach napsal(a): > Dne neděle 11. října 2020 21:18:01 CEST, Jesse Glick napsal(a): > > On Fri, Jul 10, 2020 at 6:24 AM Eric Barboni <[email protected]> wrote: > > > nb-javac-api is no more present due to legal reasons. I don't know how > > > to > > > handle that in an "open" manner. > > > > So as of this writing there is no portable way to build NetBeans > > modules with Maven if you use any Java editor features, or am I > > missing something? > > > > https://github.com/stapler/netbeans-stapler-plugin/pull/7 is as far as I > > got. > > Nice. Seems fine if it works.
I guess, it doesn't work yet (but it compiled, that is a progress, isn't it?): > [2020-10-11T19:08:29.606Z] [INFO] Generating Auto Update information for > org.openide.modules > [2020-10-11T19:08:29.606Z] [ERROR] Some included modules/bundles depend on > these codenamebases but they are not included. The application will fail > starting up. The missing codenamebases are: > [2020-10-11T19:08:29.606Z] [ERROR] org.netbeans.modules.javascript.nodejs > ref: [org.netbeans.modules.debugger.jpda.trufflenode] > [2020-10-11T19:08:29.606Z] [ERROR] org.netbeans.libs.graaljs > ref: [org.netbeans.modules.nashorn.execution] > [2020-10-11T19:08:29.606Z] [ERROR] org.netbeans.libs.truffleapi > ref: [org.netbeans.modules.nashorn.execution, > org.netbeans.modules.debugger.jpda.truffle] > [2020-10-11T19:08:29.606Z] [ERROR] Some tokens required by included modules > are not provided by included modules. The application will fail starting > up. The missing tokens are: > [2020-10-11T19:08:29.606Z] [ERROR] > org.netbeans.modules.web.browser.api.PageInspector ref: > [org.netbeans.modules.ko4j.debugging] > [2020-10-11T19:08:29.606Z] [ERROR] org.netbeans.modules.nbjavac > ref: [org.netbeans.modules.java.source.nbjavac] Why don't you try to disable these modules? The truffle stuff is new and your application probably doesn't need it. Excluding [org.netbeans.modules.ko4j.debugging is probably also fine, unless you need knockout.js code completion. No need to include org.netbeans.modules.java.source.nbjavac, when you are not using NbJavac - but then your application needs to run on JDK11+... At least that's what I got at first (well second) glance. -jt --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
