Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Webster2013-10-01 20:31:04 +0000
committerPaul Webster2013-10-01 20:32:06 +0000
commit80b341f82d20fa2f628558eae9643f3967c5f2c6 (patch)
treed14a0346077c378e75ff0124016cfed813a9d88f
parent216e6bf7e2f96d11714c9276d8d479b55c8a5780 (diff)
downloadorg.eclipse.e4.tools-change/16620/3.tar.gz
org.eclipse.e4.tools-change/16620/3.tar.xz
org.eclipse.e4.tools-change/16620/3.zip
Bug 417315 - Improve "Explorer editing CSS with orion" with SWT OrionControlchange/16620/3
Added new control to the build.
-rw-r--r--bundles/org.eclipse.e4.tools.orion.editor.samples/pom.xml16
-rw-r--r--bundles/org.eclipse.e4.tools.orion.editor/pom.xml16
-rw-r--r--features/org.eclipse.e4.tools.orion.css.editor.feature/feature.xml7
-rw-r--r--pom.xml2
4 files changed, 41 insertions, 0 deletions
diff --git a/bundles/org.eclipse.e4.tools.orion.editor.samples/pom.xml b/bundles/org.eclipse.e4.tools.orion.editor.samples/pom.xml
new file mode 100644
index 00000000..db9ce0b1
--- /dev/null
+++ b/bundles/org.eclipse.e4.tools.orion.editor.samples/pom.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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>
+ <groupId>org.eclipse.e4.tools</groupId>
+ <artifactId>e4-tools-aggregator</artifactId>
+ <version>0.15.0-SNAPSHOT</version>
+ <relativePath>../../</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.e4</groupId>
+ <artifactId>org.eclipse.e4.tools.orion.editor.samples</artifactId>
+ <version>0.15.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+
+</project>
diff --git a/bundles/org.eclipse.e4.tools.orion.editor/pom.xml b/bundles/org.eclipse.e4.tools.orion.editor/pom.xml
new file mode 100644
index 00000000..08b72cbe
--- /dev/null
+++ b/bundles/org.eclipse.e4.tools.orion.editor/pom.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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>
+ <groupId>org.eclipse.e4.tools</groupId>
+ <artifactId>e4-tools-aggregator</artifactId>
+ <version>0.15.0-SNAPSHOT</version>
+ <relativePath>../../</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.e4</groupId>
+ <artifactId>org.eclipse.e4.tools.orion.editor</artifactId>
+ <version>0.15.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+
+</project>
diff --git a/features/org.eclipse.e4.tools.orion.css.editor.feature/feature.xml b/features/org.eclipse.e4.tools.orion.css.editor.feature/feature.xml
index 4d374c65..48ae1cdf 100644
--- a/features/org.eclipse.e4.tools.orion.css.editor.feature/feature.xml
+++ b/features/org.eclipse.e4.tools.orion.css.editor.feature/feature.xml
@@ -31,5 +31,12 @@
version="0.0.0"
unpack="false"/>
+ <plugin
+ id="org.eclipse.e4.tools.orion.editor"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"
+ unpack="false"/>
+
</feature>
diff --git a/pom.xml b/pom.xml
index ef67da36..66a195f3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -50,6 +50,8 @@
<module>./bundles/org.eclipse.e4.tools.css.editor.ui</module>
<module>./bundles/org.eclipse.e4.tools.css.editor</module>
<module>./bundles/org.eclipse.e4.tools.orion.css.editor</module>
+ <module>./bundles/org.eclipse.e4.tools.orion.editor</module>
+ <module>./bundles/org.eclipse.e4.tools.orion.editor.samples</module>
<module>./bundles/org.eclipse.e4.tools.css.spy</module>
<module>./bundles/org.eclipse.e4.tools.event.spy</module>
<module>./features/org.eclipse.e4.core.tools.feature</module>

Back to the top