You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Usually the generate features task is called after Java code compiles successfully. But if Java code fails to compile twice in a row and then you fix the error and it compiles successfully then generate features is not called. It could also be that generate features is not called on an intermittent basis.
Use the demo-devmode project and start dev mode normally: gradle libertyDev
Next, modify SystemLivenessCheck.java to remove a semicolon to cause a syntax error and save. LGP reports Source compilation had errors. Remove another ; and save, same message. Correct both syntax errors and save again. Even though dev mode prints the message Source compilation was successful the generate features task does not run.
N.B. This affects one of the integration tests. Find this issue number in DevTest.groovy and restore the assertions.
> Task :libertyDev
Source compilation had errors.
> Task :compileJava
> Task :processResources UP-TO-DATE
BUILD SUCCESSFUL in 185ms
2 actionable tasks: 1 executed, 1 up-to-date
> Task :libertyDev
Source compilation was successful.
[AUDIT ] CWWKT0017I: Web application removed (default_host): http://192.168.0.209:9081/
[AUDIT ] CWWKZ0009I: The application demo-devmode-gradle has stopped successfully.
[AUDIT ] CWWKT0016I: Web application available (default_host): http://192.168.0.209:9081/
[AUDIT ] CWWKZ0003I: The application demo-devmode-gradle updated in 0.081 seconds.
<-------------> 0% EXECUTING [10m 43s]
> :liberty
The text was updated successfully, but these errors were encountered:
Usually the generate features task is called after Java code compiles successfully. But if Java code fails to compile twice in a row and then you fix the error and it compiles successfully then generate features is not called. It could also be that generate features is not called on an intermittent basis.
Use the demo-devmode project and start dev mode normally:
gradle libertyDev
Next, modify SystemLivenessCheck.java to remove a semicolon to cause a syntax error and save. LGP reports
Source compilation had errors.
Remove another ; and save, same message. Correct both syntax errors and save again. Even though dev mode prints the messageSource compilation was successful
the generate features task does not run.N.B. This affects one of the integration tests. Find this issue number in DevTest.groovy and restore the assertions.
The text was updated successfully, but these errors were encountered: