aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/sonar-core-gwt/src
diff options
context:
space:
mode:
authorsimonbrandhof <simon.brandhof@gmail.com>2011-01-13 19:13:16 +0100
committersimonbrandhof <simon.brandhof@gmail.com>2011-01-13 19:15:06 +0100
commitdff2f68c8d045037248e4924c48b100d2d5d05d8 (patch)
tree82f979adf05acc23826c805c43d4ff015a13869a /plugins/sonar-core-gwt/src
parentc34c1bc92635b3f4846a8aae267be8094be80b8c (diff)
downloadsonarqube-dff2f68c8d045037248e4924c48b100d2d5d05d8.tar.gz
sonarqube-dff2f68c8d045037248e4924c48b100d2d5d05d8.zip
optimizing GWT compilation to speed up build in dev environments
Diffstat (limited to 'plugins/sonar-core-gwt/src')
-rw-r--r--plugins/sonar-core-gwt/src/main/resources/org/sonar/plugins/core/clouds/GwtCloudsDev.gwt.xml13
-rw-r--r--plugins/sonar-core-gwt/src/main/resources/org/sonar/plugins/core/coverageviewer/CoverageViewerDev.gwt.xml12
-rw-r--r--plugins/sonar-core-gwt/src/main/resources/org/sonar/plugins/core/defaultsourceviewer/GwtDefaultSourceViewerDev.gwt.xml12
-rw-r--r--plugins/sonar-core-gwt/src/main/resources/org/sonar/plugins/core/duplicationsviewer/DuplicationsViewerDev.gwt.xml15
-rw-r--r--plugins/sonar-core-gwt/src/main/resources/org/sonar/plugins/core/hotspots/GwtHotspotsDev.gwt.xml12
-rw-r--r--plugins/sonar-core-gwt/src/main/resources/org/sonar/plugins/core/testdetailsviewer/TestsViewerDev.gwt.xml15
-rw-r--r--plugins/sonar-core-gwt/src/main/resources/org/sonar/plugins/core/ui/pageselector/PageSelectorDev.gwt.xml14
-rw-r--r--plugins/sonar-core-gwt/src/main/resources/org/sonar/plugins/core/violationsviewer/ViolationsViewerDev.gwt.xml13
8 files changed, 106 insertions, 0 deletions
diff --git a/plugins/sonar-core-gwt/src/main/resources/org/sonar/plugins/core/clouds/GwtCloudsDev.gwt.xml b/plugins/sonar-core-gwt/src/main/resources/org/sonar/plugins/core/clouds/GwtCloudsDev.gwt.xml
new file mode 100644
index 00000000000..a9c37479fcc
--- /dev/null
+++ b/plugins/sonar-core-gwt/src/main/resources/org/sonar/plugins/core/clouds/GwtCloudsDev.gwt.xml
@@ -0,0 +1,13 @@
+<module rename-to="org.sonar.plugins.core.clouds.GwtClouds">
+ <inherits name="com.google.gwt.user.User"/>
+ <inherits name="com.google.gwt.json.JSON"/>
+ <inherits name="com.google.gwt.http.HTTP"/>
+ <inherits name="org.sonar.api.web.gwt.Sonar"/>
+
+ <stylesheet src="clouds.css"/>
+
+ <entry-point class="org.sonar.plugins.core.clouds.client.GwtClouds"/>
+
+ <!-- optimization of dev environments -->
+ <set-property name="user.agent" value="gecko1_8" />
+</module>
diff --git a/plugins/sonar-core-gwt/src/main/resources/org/sonar/plugins/core/coverageviewer/CoverageViewerDev.gwt.xml b/plugins/sonar-core-gwt/src/main/resources/org/sonar/plugins/core/coverageviewer/CoverageViewerDev.gwt.xml
new file mode 100644
index 00000000000..0ab28e22798
--- /dev/null
+++ b/plugins/sonar-core-gwt/src/main/resources/org/sonar/plugins/core/coverageviewer/CoverageViewerDev.gwt.xml
@@ -0,0 +1,12 @@
+<module rename-to="org.sonar.plugins.core.coverageviewer.CoverageViewer">
+ <inherits name="com.google.gwt.user.User"/>
+ <inherits name="com.google.gwt.json.JSON"/>
+ <inherits name="com.google.gwt.http.HTTP"/>
+ <inherits name="org.sonar.Sonar"/>
+ <inherits name="com.google.gwt.gen2.table.Table"/>
+
+ <entry-point class="org.sonar.plugins.core.coverageviewer.client.CoverageViewer"/>
+
+ <!-- optimization of dev environments -->
+ <set-property name="user.agent" value="gecko1_8" />
+</module>
diff --git a/plugins/sonar-core-gwt/src/main/resources/org/sonar/plugins/core/defaultsourceviewer/GwtDefaultSourceViewerDev.gwt.xml b/plugins/sonar-core-gwt/src/main/resources/org/sonar/plugins/core/defaultsourceviewer/GwtDefaultSourceViewerDev.gwt.xml
new file mode 100644
index 00000000000..eb23d0f5df8
--- /dev/null
+++ b/plugins/sonar-core-gwt/src/main/resources/org/sonar/plugins/core/defaultsourceviewer/GwtDefaultSourceViewerDev.gwt.xml
@@ -0,0 +1,12 @@
+<module rename-to="org.sonar.plugins.core.defaultsourceviewer.GwtDefaultSourceViewer">
+ <inherits name="com.google.gwt.user.User"/>
+ <inherits name="com.google.gwt.json.JSON"/>
+ <inherits name="com.google.gwt.http.HTTP"/>
+ <inherits name="org.sonar.Sonar"/>
+ <inherits name="com.google.gwt.gen2.table.Table"/>
+
+ <entry-point class="org.sonar.plugins.core.defaultsourceviewer.client.GwtDefaultSourceViewer"/>
+
+ <!-- optimization of dev environments -->
+ <set-property name="user.agent" value="gecko1_8" />
+</module>
diff --git a/plugins/sonar-core-gwt/src/main/resources/org/sonar/plugins/core/duplicationsviewer/DuplicationsViewerDev.gwt.xml b/plugins/sonar-core-gwt/src/main/resources/org/sonar/plugins/core/duplicationsviewer/DuplicationsViewerDev.gwt.xml
new file mode 100644
index 00000000000..a4d082aca8f
--- /dev/null
+++ b/plugins/sonar-core-gwt/src/main/resources/org/sonar/plugins/core/duplicationsviewer/DuplicationsViewerDev.gwt.xml
@@ -0,0 +1,15 @@
+<module rename-to="org.sonar.plugins.core.duplicationsviewer.DuplicationsViewer">
+ <inherits name="com.google.gwt.xml.XML"/>
+ <inherits name="com.google.gwt.user.User"/>
+ <inherits name="com.google.gwt.json.JSON"/>
+ <inherits name="com.google.gwt.http.HTTP"/>
+ <inherits name="org.sonar.Sonar"/>
+ <inherits name="com.google.gwt.gen2.table.Table"/>
+
+ <stylesheet src="DuplicationsViewer.css"/>
+
+ <entry-point class="org.sonar.plugins.core.duplicationsviewer.client.DuplicationsViewer"/>
+
+ <!-- optimization of dev environments -->
+ <set-property name="user.agent" value="gecko1_8" />
+</module>
diff --git a/plugins/sonar-core-gwt/src/main/resources/org/sonar/plugins/core/hotspots/GwtHotspotsDev.gwt.xml b/plugins/sonar-core-gwt/src/main/resources/org/sonar/plugins/core/hotspots/GwtHotspotsDev.gwt.xml
new file mode 100644
index 00000000000..de57eb5f22f
--- /dev/null
+++ b/plugins/sonar-core-gwt/src/main/resources/org/sonar/plugins/core/hotspots/GwtHotspotsDev.gwt.xml
@@ -0,0 +1,12 @@
+<module rename-to="org.sonar.plugins.core.hotspots.GwtHotspots">
+ <inherits name="com.google.gwt.user.User"/>
+ <inherits name="com.google.gwt.json.JSON"/>
+ <inherits name="com.google.gwt.http.HTTP"/>
+ <inherits name="org.sonar.Sonar"/>
+ <inherits name="com.google.gwt.i18n.I18N"/>
+ <stylesheet src="hotspots.css"/>
+ <entry-point class="org.sonar.plugins.core.hotspots.client.GwtHotspots"/>
+
+ <!-- optimization of dev environments -->
+ <set-property name="user.agent" value="gecko1_8" />
+</module> \ No newline at end of file
diff --git a/plugins/sonar-core-gwt/src/main/resources/org/sonar/plugins/core/testdetailsviewer/TestsViewerDev.gwt.xml b/plugins/sonar-core-gwt/src/main/resources/org/sonar/plugins/core/testdetailsviewer/TestsViewerDev.gwt.xml
new file mode 100644
index 00000000000..c44229ca597
--- /dev/null
+++ b/plugins/sonar-core-gwt/src/main/resources/org/sonar/plugins/core/testdetailsviewer/TestsViewerDev.gwt.xml
@@ -0,0 +1,15 @@
+<module rename-to="org.sonar.plugins.core.testdetailsviewer.TestsViewer">
+ <inherits name="com.google.gwt.xml.XML"/>
+ <inherits name="com.google.gwt.user.User"/>
+ <inherits name="com.google.gwt.json.JSON"/>
+ <inherits name="com.google.gwt.http.HTTP"/>
+ <inherits name="org.sonar.Sonar"/>
+ <inherits name="com.google.gwt.gen2.table.Table"/>
+
+ <stylesheet src="TestsViewer.css"/>
+
+ <entry-point class="org.sonar.plugins.core.testdetailsviewer.client.TestsViewer"/>
+
+ <!-- optimization of dev environments -->
+ <set-property name="user.agent" value="gecko1_8" />
+</module> \ No newline at end of file
diff --git a/plugins/sonar-core-gwt/src/main/resources/org/sonar/plugins/core/ui/pageselector/PageSelectorDev.gwt.xml b/plugins/sonar-core-gwt/src/main/resources/org/sonar/plugins/core/ui/pageselector/PageSelectorDev.gwt.xml
new file mode 100644
index 00000000000..b1c8bc295f8
--- /dev/null
+++ b/plugins/sonar-core-gwt/src/main/resources/org/sonar/plugins/core/ui/pageselector/PageSelectorDev.gwt.xml
@@ -0,0 +1,14 @@
+<module rename-to="org.sonar.plugins.core.ui.pageselector.PageSelector">
+ <inherits name="com.google.gwt.user.User"/>
+ <inherits name="com.google.gwt.json.JSON"/>
+ <inherits name="com.google.gwt.http.HTTP"/>
+ <inherits name="com.google.gwt.i18n.I18N"/>
+ <inherits name="org.sonar.api.web.gwt.Sonar"/>
+ <inherits name="org.sonar.Sonar"/>
+ <stylesheet src="pageselector.css" />
+
+ <entry-point class="org.sonar.plugins.core.ui.pageselector.client.PageSelector"/>
+
+ <!-- optimization of dev environments -->
+ <set-property name="user.agent" value="gecko1_8" />
+</module> \ No newline at end of file
diff --git a/plugins/sonar-core-gwt/src/main/resources/org/sonar/plugins/core/violationsviewer/ViolationsViewerDev.gwt.xml b/plugins/sonar-core-gwt/src/main/resources/org/sonar/plugins/core/violationsviewer/ViolationsViewerDev.gwt.xml
new file mode 100644
index 00000000000..e628eae9114
--- /dev/null
+++ b/plugins/sonar-core-gwt/src/main/resources/org/sonar/plugins/core/violationsviewer/ViolationsViewerDev.gwt.xml
@@ -0,0 +1,13 @@
+<module rename-to="org.sonar.plugins.core.violationsviewer.ViolationsViewer">
+ <inherits name="com.google.gwt.user.User"/>
+ <inherits name="com.google.gwt.json.JSON"/>
+ <inherits name="com.google.gwt.http.HTTP"/>
+ <inherits name="org.sonar.Sonar"/>
+ <inherits name="com.google.gwt.gen2.table.Table"/>
+ <inherits name="com.google.gwt.i18n.I18N"/>
+
+ <entry-point class="org.sonar.plugins.core.violationsviewer.client.ViolationsViewer"/>
+
+ <!-- optimization of dev environments -->
+ <set-property name="user.agent" value="gecko1_8" />
+</module>