Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMickael Istria2018-04-30 11:00:25 +0000
committerMickael Istria2018-05-02 14:27:06 +0000
commit0ad2d427485d841e1f02fc8736b2e98fee0a27d2 (patch)
treee7955eb15e54d870ead3d1c5d74148d4e0e81585
parent4c7c704b33bb950ecf2425b4f12b3e83ad4ca02a (diff)
downloadeclipse.platform.swt-0ad2d427485d841e1f02fc8736b2e98fee0a27d2.tar.gz
eclipse.platform.swt-0ad2d427485d841e1f02fc8736b2e98fee0a27d2.tar.xz
eclipse.platform.swt-0ad2d427485d841e1f02fc8736b2e98fee0a27d2.zip
Declare source folders for SonarQube analysis
Since the bundle is configured to not actually build content and doesn't declare source folders in build.properties, we need to explicitly add folders if we want SonarQube to analyze them. Change-Id: Ibb18c46a17bfd5e79cae2efdcd45ba4df61c19e6 Signed-off-by: Mickael Istria <mistria@redhat.com>
-rw-r--r--bundles/org.eclipse.swt/pom.xml17
1 files changed, 9 insertions, 8 deletions
diff --git a/bundles/org.eclipse.swt/pom.xml b/bundles/org.eclipse.swt/pom.xml
index cd352233d7..0c6d4d8139 100644
--- a/bundles/org.eclipse.swt/pom.xml
+++ b/bundles/org.eclipse.swt/pom.xml
@@ -23,6 +23,7 @@
<packaging>eclipse-plugin</packaging>
<properties>
<forceContextQualifier>v20180501-1900</forceContextQualifier>
+ <sonar.sources>Eclipse SWT Accessibility/cocoa,Eclipse SWT Accessibility/common,Eclipse SWT Accessibility/gtk,Eclipse SWT Accessibility/win32,Eclipse SWT AWT/cocoa,Eclipse SWT AWT/common,Eclipse SWT AWT/gtk,Eclipse SWT AWT/win32,Eclipse SWT Browser/cocoa,Eclipse SWT Browser/common,Eclipse SWT Browser/gtk,Eclipse SWT Browser/win32,Eclipse SWT Custom Widgets/common,Eclipse SWT Drag and Drop/cocoa,Eclipse SWT Drag and Drop/common,Eclipse SWT Drag and Drop/gtk,Eclipse SWT Drag and Drop/win32,Eclipse SWT OLE Win32/win32,Eclipse SWT OpenGL/cocoa,Eclipse SWT OpenGL/common,Eclipse SWT OpenGL/glx,Eclipse SWT OpenGL/gtk,Eclipse SWT OpenGL/win32,Eclipse SWT PI/cairo,Eclipse SWT PI/cocoa,Eclipse SWT PI/common,Eclipse SWT PI/gtk,Eclipse SWT PI/win32,Eclipse SWT Printing/cocoa,Eclipse SWT Printing/common,Eclipse SWT Printing/gtk,Eclipse SWT Printing/win32,Eclipse SWT Program/cocoa,Eclipse SWT Program/common,Eclipse SWT Program/gtk,Eclipse SWT Program/win32,Eclipse SWT WebKit/cocoa,Eclipse SWT WebKit/gtk,Eclipse SWT WebKit/win32,Eclipse SWT/cairo,Eclipse SWT/cocoa,Eclipse SWT/common_j2se,Eclipse SWT/common,Eclipse SWT/emulated/bidi,Eclipse SWT/emulated/coolbar,Eclipse SWT/emulated/expand,Eclipse SWT/emulated/taskbar,Eclipse SWT/emulated/tooltip,Eclipse SWT/gtk,Eclipse SWT/win32</sonar.sources>
</properties>
<build>
<plugins>
@@ -76,14 +77,14 @@
</execution>
</executions>
<dependencies>
- <dependency>
- <groupId>com.sun</groupId>
- <artifactId>tools</artifactId>
- <version>0.0.0</version>
- <scope>system</scope>
- <systemPath>${toolsjar}</systemPath>
- </dependency>
- </dependencies>
+ <dependency>
+ <groupId>com.sun</groupId>
+ <artifactId>tools</artifactId>
+ <version>0.0.0</version>
+ <scope>system</scope>
+ <systemPath>${toolsjar}</systemPath>
+ </dependency>
+ </dependencies>
</plugin>
</plugins>
</build>

Back to the top