Skip to content

Commit 17979af

Browse files
committed
Integrate Terminal control into platform build
1 parent fb72a84 commit 17979af

File tree

3 files changed

+30
-2
lines changed

3 files changed

+30
-2
lines changed

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@
6666
<module>resources</module>
6767
<module>debug</module>
6868
<module>ua</module>
69+
<module>terminal/</module>
6970
</modules>
7071
<build>
7172
<pluginManagement>

terminal/plugins/org.eclipse.tm.terminal.control/META-INF/MANIFEST.MF

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: %pluginName
44
Bundle-SymbolicName: org.eclipse.tm.terminal.control; singleton:=true
5-
Bundle-Version: 5.5.400.qualifier
5+
Bundle-Version: 5.6.0.qualifier
66
Bundle-Activator: org.eclipse.tm.internal.terminal.control.impl.TerminalPlugin
77
Bundle-Vendor: %providerName
88
Bundle-Localization: plugin
@@ -11,7 +11,6 @@ Require-Bundle: org.eclipse.core.runtime,
1111
Bundle-ActivationPolicy: lazy
1212
Eclipse-LazyStart: true
1313
Bundle-RequiredExecutionEnvironment: JavaSE-17
14-
Bundle-ClassPath: .
1514
Export-Package: org.eclipse.tm.internal.terminal.connector;x-internal:=true,
1615
org.eclipse.tm.internal.terminal.control,
1716
org.eclipse.tm.internal.terminal.control.actions,

terminal/pom.xml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
Copyright (c) 2012, 2015 Eclipse Foundation and others.
4+
All rights reserved. This program and the accompanying materials
5+
are made available under the terms of the Eclipse Distribution License v1.0
6+
which accompanies this distribution, and is available at
7+
http://www.eclipse.org/org/documents/edl-v10.php
8+
9+
Contributors:
10+
Igor Fedorenko - initial implementation
11+
-->
12+
<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">
13+
<modelVersion>4.0.0</modelVersion>
14+
15+
<parent>
16+
<groupId>org.eclipse.platform</groupId>
17+
<artifactId>eclipse.platform</artifactId>
18+
<version>4.36.0-SNAPSHOT</version>
19+
</parent>
20+
21+
<artifactId>eclipse.platform.terminal</artifactId>
22+
<packaging>pom</packaging>
23+
24+
<modules>
25+
<module>plugins</module>
26+
</modules>
27+
</project>
28+

0 commit comments

Comments
 (0)