Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc-Andre Laperle2015-11-04 04:46:18 +0000
committerAlexander Kurtakov2016-09-21 08:46:34 +0000
commit13aff36cf5e487afc79574bb15ceacadeb15daaf (patch)
treed1a55798a7b1ccd242f83e6cb29579461c35591a /bundles/org.eclipse.swt.tools.base
parent806829c269af091f858f3f4f7be3f6212583d81c (diff)
downloadeclipse.platform.swt-13aff36cf5e487afc79574bb15ceacadeb15daaf.tar.gz
eclipse.platform.swt-13aff36cf5e487afc79574bb15ceacadeb15daaf.tar.xz
eclipse.platform.swt-13aff36cf5e487afc79574bb15ceacadeb15daaf.zip
Bug 481467 - SWT Tools: Split Sleak and Spy into its own 'spies' plug-in
Change-Id: I728fdcd8853842adc7d6e987926ca10f39046845 Signed-off-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
Diffstat (limited to 'bundles/org.eclipse.swt.tools.base')
-rw-r--r--bundles/org.eclipse.swt.tools.base/.project22
-rw-r--r--bundles/org.eclipse.swt.tools.base/META-INF/MANIFEST.MF10
-rw-r--r--bundles/org.eclipse.swt.tools.base/about.html28
-rw-r--r--bundles/org.eclipse.swt.tools.base/build.properties16
-rw-r--r--bundles/org.eclipse.swt.tools.base/plugin.properties13
-rw-r--r--bundles/org.eclipse.swt.tools.base/plugin.xml11
-rw-r--r--bundles/org.eclipse.swt.tools.base/pom.xml24
7 files changed, 124 insertions, 0 deletions
diff --git a/bundles/org.eclipse.swt.tools.base/.project b/bundles/org.eclipse.swt.tools.base/.project
new file mode 100644
index 0000000000..e8f1538351
--- /dev/null
+++ b/bundles/org.eclipse.swt.tools.base/.project
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>org.eclipse.swt.tools.base</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.pde.ManifestBuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ <buildCommand>
+ <name>org.eclipse.pde.SchemaBuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.pde.PluginNature</nature>
+ </natures>
+</projectDescription>
diff --git a/bundles/org.eclipse.swt.tools.base/META-INF/MANIFEST.MF b/bundles/org.eclipse.swt.tools.base/META-INF/MANIFEST.MF
new file mode 100644
index 0000000000..7ff1234898
--- /dev/null
+++ b/bundles/org.eclipse.swt.tools.base/META-INF/MANIFEST.MF
@@ -0,0 +1,10 @@
+Manifest-Version: 1.0
+Bundle-Name: %pluginName
+Bundle-Vendor: %providerName
+Bundle-SymbolicName: org.eclipse.swt.tools.base;singleton:=true
+Bundle-Version: 3.106.0.qualifier
+Bundle-ManifestVersion: 2
+Bundle-ActivationPolicy: lazy
+Bundle-Localization: plugin
+Bundle-RequiredExecutionEnvironment: JavaSE-1.8
+Require-Bundle: org.eclipse.ui;bundle-version="3.4.0"
diff --git a/bundles/org.eclipse.swt.tools.base/about.html b/bundles/org.eclipse.swt.tools.base/about.html
new file mode 100644
index 0000000000..460233046e
--- /dev/null
+++ b/bundles/org.eclipse.swt.tools.base/about.html
@@ -0,0 +1,28 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
+<title>About</title>
+</head>
+<body lang="EN-US">
+<h2>About This Content</h2>
+
+<p>June 2, 2006</p>
+<h3>License</h3>
+
+<p>The Eclipse Foundation makes available all content in this plug-in (&quot;Content&quot;). Unless otherwise
+indicated below, the Content is provided to you under the terms and conditions of the
+Eclipse Public License Version 1.0 (&quot;EPL&quot;). A copy of the EPL is available
+at <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>.
+For purposes of the EPL, &quot;Program&quot; will mean the Content.</p>
+
+<p>If you did not receive this Content directly from the Eclipse Foundation, the Content is
+being redistributed by another party (&quot;Redistributor&quot;) and different terms and conditions may
+apply to your use of any object code in the Content. Check the Redistributor's license that was
+provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise
+indicated below, the terms and conditions of the EPL still apply to any source code in the Content
+and such source code may be obtained at <a href="http://www.eclipse.org">http://www.eclipse.org</a>.</p>
+
+</body>
+</html> \ No newline at end of file
diff --git a/bundles/org.eclipse.swt.tools.base/build.properties b/bundles/org.eclipse.swt.tools.base/build.properties
new file mode 100644
index 0000000000..4f2ca32db0
--- /dev/null
+++ b/bundles/org.eclipse.swt.tools.base/build.properties
@@ -0,0 +1,16 @@
+###############################################################################
+# Copyright (c) 2003, 2015 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+bin.includes = about.html,\
+ plugin.xml,\
+ plugin.properties,\
+ META-INF/,\
+ .
+src.includes = about.html
diff --git a/bundles/org.eclipse.swt.tools.base/plugin.properties b/bundles/org.eclipse.swt.tools.base/plugin.properties
new file mode 100644
index 0000000000..e5da959a5a
--- /dev/null
+++ b/bundles/org.eclipse.swt.tools.base/plugin.properties
@@ -0,0 +1,13 @@
+###############################################################################
+# Copyright (c) 2000, 2015 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+pluginName = SWT Tools Base
+viewCategory = SWT Tools
+providerName = Eclipse.org
diff --git a/bundles/org.eclipse.swt.tools.base/plugin.xml b/bundles/org.eclipse.swt.tools.base/plugin.xml
new file mode 100644
index 0000000000..530f3f019e
--- /dev/null
+++ b/bundles/org.eclipse.swt.tools.base/plugin.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?eclipse version="3.0"?>
+<plugin>
+ <extension
+ point="org.eclipse.ui.views">
+ <category
+ id="org.eclipse.swt.swt.tools"
+ name="%viewCategory">
+ </category>
+ </extension>
+</plugin>
diff --git a/bundles/org.eclipse.swt.tools.base/pom.xml b/bundles/org.eclipse.swt.tools.base/pom.xml
new file mode 100644
index 0000000000..bcba773d4c
--- /dev/null
+++ b/bundles/org.eclipse.swt.tools.base/pom.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2012, 2015 Eclipse Foundation and others.
+ All rights reserved. This program and the accompanying materials
+ are made available under the terms of the Eclipse Distribution License v1.0
+ which accompanies this distribution, and is available at
+ http://www.eclipse.org/org/documents/edl-v10.php
+
+ Contributors:
+ Igor Fedorenko - initial implementation
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <artifactId>eclipse.platform.swt.localbuild</artifactId>
+ <groupId>eclipse.platform.swt</groupId>
+ <version>4.7.0-SNAPSHOT</version>
+ <relativePath>../../local-build/local-build-parent/</relativePath>
+ </parent>
+ <groupId>org.eclipse.swt</groupId>
+ <artifactId>org.eclipse.swt.tools.base</artifactId>
+ <version>3.106.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+</project>

Back to the top