-
|
Hello, Which mvn command do I use to convert from Java to JavaScript and which do I use to run tests? Also, is Java 11 required? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
|
After you generate from an archetype, you can build and run test with Java 11 or greater is required, our current version of closure-compiler mandates it. |
Beta Was this translation helpful? Give feedback.
-
|
Thank you, I read the instructions and did some experiments. On my machine, Anyway, to reduce the waiting time, using |
Beta Was this translation helpful? Give feedback.
Neither is needed for development - a war file wouldn't make sense anyway if you're intending to run j2cl:watch. Just j2cl:build takes less time than verify because verify includes tests - consider skipping tests, but correctly run j2cl:build as part of the phases to avoid skipping some other goal or configuration by mistake. If you're new to maven…