Skip to content
Snippets Groups Projects
Commit b52c6fd0 authored by tpylak's avatar tpylak
Browse files

LMS-1275 minor: code inside plugin/PLUGIN-NAME/shared/basic should be compiled by GWT

SVN: 13748
parent b93c02a3
No related branches found
No related tags found
No related merge requests found
......@@ -31,16 +31,19 @@
<script src="demo-dictionary.js"/>
<public path="plugin/demo/client/web/public"/>
<source path="plugin/demo/client/web/client"/>
<source path="plugin/demo/shared/basic"/>
<!-- Generic plugin -->
<script src="generic-dictionary.js"/>
<public path="plugin/generic/client/web/public"/>
<source path="plugin/generic/client/web/client"/>
<source path="plugin/generic/shared/basic"/>
<!-- Screening plugin -->
<script src="screening-dictionary.js"/>
<public path="plugin/screening/client/web/public"/>
<source path="plugin/screening/client/web/client"/>
<source path="plugin/screening/shared/basic"/>
<!-- Automatically generated part - END -->
<!-- Do not define servlets here, use web.xml -->
......
......@@ -3,7 +3,5 @@
<module>
<inherits name='ch.systemsx.cisd.openbis.OpenBIS-without-entry-point' />
<source path="plugin/screening/shared/basic" />
<entry-point class='ch.systemsx.cisd.openbis.generic.client.web.client.application.Client' />
</module>
......@@ -42,7 +42,9 @@ import ch.systemsx.cisd.openbis.generic.client.web.client.application.plugin.Def
public final class WebClientFilesUpdater
{
@Private
static final String SOURCE_TAG_TEMPLATE = "<source path=\"plugin/%s/client/web/client\"/>";
static final String SOURCE_TAG_TEMPLATE =
"<source path=\"plugin/%1$s/client/web/client\"/>\n"
+ "\t\t<source path=\"plugin/%1$s/shared/basic\"/>";
@Private
static final String SCRIPT_TAG_TEMPLATE = "<script src=\"%s-dictionary.js\"/>";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment