Alexander Wels has uploaded a new change for review. Change subject: userportal,webadmin: Fix frontend compile fedora 21 ......................................................................
userportal,webadmin: Fix frontend compile fedora 21 - On java < 8 the missing class definition for GenericApiGWTServiceAsync was silently ignored and would not cause an issue, but with fedora 21 you can't downgrade to java < 8 so the missing class would cause the compile to fail. The class is generated but we never added the generated classes path to the source definition in the POM.xml Change-Id: Ib7fc9c9ecebf39dcae3a0b9c3923e2790dbb179a Signed-off-by: Alexander Wels <aw...@redhat.com> --- M frontend/webadmin/modules/frontend/pom.xml 1 file changed, 6 insertions(+), 0 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/02/34402/1 diff --git a/frontend/webadmin/modules/frontend/pom.xml b/frontend/webadmin/modules/frontend/pom.xml index f6778d8..dc0b550 100644 --- a/frontend/webadmin/modules/frontend/pom.xml +++ b/frontend/webadmin/modules/frontend/pom.xml @@ -104,6 +104,12 @@ </includes> </resource> <resource> + <directory>${project.build.directory}/generated-sources/gwt</directory> + <includes> + <include>**/*GWTServiceAsync*.java</include> + </includes> + </resource> + <resource> <directory>src/main/resources</directory> </resource> </resources> -- To view, visit http://gerrit.ovirt.org/34402 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Ib7fc9c9ecebf39dcae3a0b9c3923e2790dbb179a Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: Alexander Wels <aw...@redhat.com> _______________________________________________ Engine-patches mailing list Engine-patches@ovirt.org http://lists.ovirt.org/mailman/listinfo/engine-patches