aboutsummaryrefslogtreecommitdiff
path: root/eclipse/artifacts
diff options
context:
space:
mode:
Diffstat (limited to 'eclipse/artifacts')
-rw-r--r--eclipse/artifacts/bundles/.project11
-rw-r--r--eclipse/artifacts/bundles/monitor.product61
-rw-r--r--eclipse/artifacts/bundles/pom.xml58
3 files changed, 0 insertions, 130 deletions
diff --git a/eclipse/artifacts/bundles/.project b/eclipse/artifacts/bundles/.project
deleted file mode 100644
index 91740876a..000000000
--- a/eclipse/artifacts/bundles/.project
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<projectDescription>
- <name>tycho-bundles</name>
- <comment></comment>
- <projects>
- </projects>
- <buildSpec>
- </buildSpec>
- <natures>
- </natures>
-</projectDescription>
diff --git a/eclipse/artifacts/bundles/monitor.product b/eclipse/artifacts/bundles/monitor.product
deleted file mode 100644
index c8c0f380b..000000000
--- a/eclipse/artifacts/bundles/monitor.product
+++ /dev/null
@@ -1,61 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<?pde version="3.5"?>
-
-<product name="monitor" uid="monitorproduct" id="com.android.ide.eclipse.monitor.product" application="com.android.ide.eclipse.monitor.Application" version="24.3.3.qualifier" useFeatures="true" includeLaunchers="true">
-
-
- <configIni use="default">
- </configIni>
-
- <launcherArgs>
- <programArgs>-data @noDefault</programArgs>
- <vmArgs>-XX:MaxPermSize=256m
--Xms512m
--Xmx1024m</vmArgs>
- <vmArgsMac>-XstartOnFirstThread -Dorg.eclipse.swt.internal.carbon.smallFonts</vmArgsMac>
- </launcherArgs>
-
- <windowImages/>
-
- <splash
- location="com.android.ide.eclipse.monitor" />
- <launcher name="monitor">
- <solaris/>
- <win useIco="false">
- <bmp/>
- </win>
- </launcher>
-
-
- <vm>
- </vm>
-
-
- <plugins>
- </plugins>
-
- <features>
- <feature id="com.android.ide.eclipse.ddms.feature"/>
- <feature id="com.android.ide.eclipse.gldebugger.feature"/>
- <feature id="com.android.ide.eclipse.hierarchyviewer.feature"/>
- <feature id="com.android.ide.eclipse.traceview.feature"/>
- <feature id="com.android.ide.eclipse.monitor.feature"/>
- <feature id="org.eclipse.rcp"/>
- <feature id="org.eclipse.emf.ecore"/>
- <feature id="org.eclipse.e4.rcp"/>
- <feature id="org.eclipse.emf.common"/>
- <feature id="org.eclipse.platform"/>
- <feature id="org.eclipse.equinox.p2.core.feature"/>
- <feature id="org.eclipse.help"/>
- <feature id="org.eclipse.equinox.p2.rcp.feature"/>
- <feature id="org.eclipse.equinox.p2.extras.feature"/>
- <feature id="org.eclipse.equinox.p2.user.ui"/>
- </features>
-
- <configurations>
- <plugin id="org.eclipse.core.runtime" autoStart="true" startLevel="2" />
- <plugin id="org.eclipse.equinox.common" autoStart="true" startLevel="2" />
- <plugin id="org.eclipse.equinox.ds" autoStart="true" startLevel="2" />
- </configurations>
-
-</product>
diff --git a/eclipse/artifacts/bundles/pom.xml b/eclipse/artifacts/bundles/pom.xml
deleted file mode 100644
index 3e8df67f0..000000000
--- a/eclipse/artifacts/bundles/pom.xml
+++ /dev/null
@@ -1,58 +0,0 @@
-<?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/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
-
- <version>24.3.3-SNAPSHOT</version>
- <artifactId>bundles</artifactId>
- <packaging>eclipse-repository</packaging>
- <name>bundles</name>
-
- <parent>
- <relativePath>../../pom.xml</relativePath>
- <groupId>adt.group</groupId>
- <artifactId>parent</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- </parent>
-
- <build>
- <plugins>
- <plugin>
- <groupId>org.eclipse.tycho</groupId>
- <artifactId>tycho-p2-director-plugin</artifactId>
- <version>${tycho-version}</version>
- <executions>
- <!-- install the product for all configured os/ws/arch environments
- using p2 director -->
- <execution>
- <id>materialize-products</id>
- <goals>
- <goal>materialize-products</goal>
- </goals>
- </execution>
- <!-- create product zips (one per os/ws/arch) -->
- <execution>
- <id>archive-products</id>
- <goals>
- <goal>archive-products</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <formats>
- <win32>zip</win32>
- <linux>zip</linux>
- <macosx>zip</macosx>
- </formats>
- <products>
- <product>
- <id>monitorproduct</id>
- <attachId>com.android.ide.eclipse.monitor.product</attachId>
- <rootFolder>monitor</rootFolder>
- </product>
- </products>
- </configuration>
- </plugin>
- </plugins>
- </build>
-</project>