mirror of
https://gitee.com/jmix/cuba.git
synced 2024-12-02 19:27:57 +08:00
Add applet integration to platform #PL-3000
This commit is contained in:
parent
48dd387c1b
commit
f3e2387101
@ -74,6 +74,7 @@ def hsqldb = [group: 'org.hsqldb', name: 'hsqldb', version: '2.2.9']
|
||||
/* Legacy dependencies */
|
||||
def vaadinLegacy = [group: 'com.haulmont.thirdparty', name: 'vaadin', version: vaadinLegacyVersion]
|
||||
def popupButtonLegacy = [group: 'com.haulmont.thirdparty', name: 'popupbutton', version: '1.0.0']
|
||||
def appletIntegrationLegacy = [group: 'com.haulmont.thirdparty', name: 'appletintegration', version: '1.1.4']
|
||||
def gwtUser = [group: 'com.google.gwt', name: 'gwt-user', version: '2.3.0']
|
||||
def gwtDev = [group: 'com.google.gwt', name: 'gwt-dev', version: '2.3.0']
|
||||
def gwtServlets = [group: 'com.google.gwt', name: 'gwt-servlet', version: '2.3.0']
|
||||
@ -353,6 +354,7 @@ configure(webModule) {
|
||||
|
||||
compile(group: 'com.vaadin', name: 'vaadin-server', version: vaadinVersion)
|
||||
/* Vaadin addons */
|
||||
compile(group: 'com.haulmont.thirdparty', name: 'appletintegration', version: '1.2.10')
|
||||
compile(group: 'com.haulmont.thirdparty', name: 'popupbutton', version: '2.2.1')
|
||||
compile(group: 'org.vaadin.addons', name: 'aceeditor', version: '0.8.9')
|
||||
|
||||
@ -565,6 +567,7 @@ configure(webLegacyModule) {
|
||||
|
||||
compile(vaadinLegacy)
|
||||
compile(popupButtonLegacy)
|
||||
compile(appletIntegrationLegacy)
|
||||
|
||||
provided(webToolkitLegacyModule)
|
||||
provided(gwtUser)
|
||||
@ -668,6 +671,7 @@ configure(webToolkitLegacyModule) {
|
||||
dependencies {
|
||||
compile(vaadinLegacy)
|
||||
compile(popupButtonLegacy)
|
||||
compile(appletIntegrationLegacy)
|
||||
|
||||
provided(gwtUser)
|
||||
provided(gwtDev)
|
||||
|
@ -11,6 +11,7 @@
|
||||
<!-- Inherit DefaultWidgetSet -->
|
||||
<inherits name="com.vaadin.DefaultWidgetSet"/>
|
||||
<inherits name="org.vaadin.aceeditor.AceEditorWidgetSet"/>
|
||||
<inherits name="org.vaadin.applet.AppletintegrationWidgetset"/>
|
||||
<inherits name="org.vaadin.hene.popupbutton.widgetset.PopupbuttonWidgetset"/>
|
||||
|
||||
<replace-with class="com.haulmont.cuba.web.toolkit.ui.client.tooltip.CubaTooltip">
|
||||
|
@ -8,6 +8,7 @@
|
||||
"http://google-web-toolkit.googlecode.com/svn/trunk/distro-source/core/src/gwt-module.dtd">
|
||||
<module>
|
||||
<inherits name="com.vaadin.terminal.gwt.DefaultWidgetSet" />
|
||||
<inherits name="org.vaadin.applet.AppletintegrationWidgetset"/>
|
||||
<inherits name="org.vaadin.hene.popupbutton.widgetset.PopupbuttonWidgetset" />
|
||||
|
||||
<!-- Uncomment if 'ru' locale support will be needed -->
|
||||
|
Loading…
Reference in New Issue
Block a user