mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-22 14:12:10 +02:00
Releng: Update tm.terminal.control to 4.4
Change-Id: I457e26ed01a48a475da2174a2b5074709c3ca6d9 Signed-off-by: Martin Oberhuber <mober.at+eclipse@gmail.com>
This commit is contained in:
parent
74eb8752fe
commit
3548a7c700
18 changed files with 144 additions and 144 deletions
|
@ -1,5 +1,5 @@
|
|||
###############################################################################
|
||||
# Copyright (c) 2006, 2017 Wind River Systems, Inc. and others.
|
||||
# Copyright (c) 2006, 2018 Wind River Systems, Inc. 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
|
||||
|
@ -21,7 +21,7 @@ featureName=TM Terminal Control
|
|||
providerName=Eclipse.org - Target Management
|
||||
|
||||
# "updateSiteName" property - label for the update site
|
||||
updateSiteName=TM Terminal 4.3 Updates
|
||||
updateSiteName=TM Terminal 4.4 Updates
|
||||
|
||||
# "description" property - description of the feature
|
||||
description=An ANSI (vt102) compatible Terminal widget \
|
||||
|
@ -29,7 +29,7 @@ with RCP-only dependencies.
|
|||
|
||||
# "copyright" property - text of the "Feature Update Copyright"
|
||||
copyright=\
|
||||
Copyright (c) 2003, 2017 Wind River Systems, Inc. and others.\n\
|
||||
Copyright (c) 2003, 2018 Wind River Systems, Inc. and others.\n\
|
||||
All rights reserved. This program and the accompanying materials\n\
|
||||
are made available under the terms of the Eclipse Public License v1.0\n\
|
||||
which accompanies this distribution, and is available at\n\
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Copyright (c) 2006, 2017 Wind River Systems, Inc. and others.
|
||||
Copyright (c) 2006, 2018 Wind River Systems, Inc. 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
|
||||
|
@ -14,7 +14,7 @@
|
|||
<feature
|
||||
id="org.eclipse.tm.terminal.control.feature"
|
||||
label="%featureName"
|
||||
version="4.3.0.qualifier"
|
||||
version="4.4.0.qualifier"
|
||||
provider-name="%providerName"
|
||||
plugin="org.eclipse.tm.terminal.control"
|
||||
license-feature="org.eclipse.license"
|
||||
|
@ -33,7 +33,7 @@
|
|||
</license>
|
||||
|
||||
<url>
|
||||
<update label="%updateSiteName" url="http://download.eclipse.org/tm/terminal/updates/4.3"/>
|
||||
<update label="%updateSiteName" url="http://download.eclipse.org/tm/terminal/updates/4.4"/>
|
||||
</url>
|
||||
|
||||
<requires>
|
||||
|
|
|
@ -1,36 +1,36 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
|
||||
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
|
||||
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.eclipse.tm.terminal</groupId>
|
||||
<artifactId>org.eclipse.tm.terminal.maven-build</artifactId>
|
||||
<version>4.4.0-SNAPSHOT</version>
|
||||
<relativePath>../../admin/pom-build.xml</relativePath>
|
||||
</parent>
|
||||
<parent>
|
||||
<groupId>org.eclipse.tm.terminal</groupId>
|
||||
<artifactId>org.eclipse.tm.terminal.maven-build</artifactId>
|
||||
<version>4.4.0-SNAPSHOT</version>
|
||||
<relativePath>../../admin/pom-build.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<version>4.3.0-SNAPSHOT</version>
|
||||
<artifactId>org.eclipse.tm.terminal.control.feature</artifactId>
|
||||
<packaging>eclipse-feature</packaging>
|
||||
<version>4.4.0-SNAPSHOT</version>
|
||||
<artifactId>org.eclipse.tm.terminal.control.feature</artifactId>
|
||||
<packaging>eclipse-feature</packaging>
|
||||
|
||||
<properties>
|
||||
<jacoco.skip>true</jacoco.skip>
|
||||
</properties>
|
||||
<properties>
|
||||
<jacoco.skip>true</jacoco.skip>
|
||||
</properties>
|
||||
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.eclipse.tycho</groupId>
|
||||
<artifactId>tycho-packaging-plugin</artifactId>
|
||||
<version>${tycho-version}</version>
|
||||
<configuration>
|
||||
<timestampProvider>default</timestampProvider>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.eclipse.tycho</groupId>
|
||||
<artifactId>tycho-packaging-plugin</artifactId>
|
||||
<version>${tycho-version}</version>
|
||||
<configuration>
|
||||
<timestampProvider>default</timestampProvider>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
</project>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
###############################################################################
|
||||
# Copyright (c) 2006, 2017 Wind River Systems, Inc. and others.
|
||||
# Copyright (c) 2006, 2018 Wind River Systems, Inc. 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
|
||||
|
@ -21,7 +21,7 @@ featureName=TM Terminal Control, SDK
|
|||
providerName=Eclipse.org - Target Management
|
||||
|
||||
# "updateSiteName" property - label for the update site
|
||||
updateSiteName=TM Terminal 4.3 Updates
|
||||
updateSiteName=TM Terminal 4.4 Updates
|
||||
|
||||
# "description" property - description of the feature
|
||||
description=An ANSI (vt102) compatible Terminal widget \
|
||||
|
@ -29,7 +29,7 @@ with RCP-only dependencies.
|
|||
|
||||
# "copyright" property - text of the "Feature Update Copyright"
|
||||
copyright=\
|
||||
Copyright (c) 2003, 2017 Wind River Systems, Inc. and others.\n\
|
||||
Copyright (c) 2003, 2018 Wind River Systems, Inc. and others.\n\
|
||||
All rights reserved. This program and the accompanying materials\n\
|
||||
are made available under the terms of the Eclipse Public License v1.0\n\
|
||||
which accompanies this distribution, and is available at\n\
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Copyright (c) 2006, 2015 Wind River Systems, Inc. and others.
|
||||
Copyright (c) 2006, 2018 Wind River Systems, Inc. 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
|
||||
|
@ -14,7 +14,7 @@
|
|||
<feature
|
||||
id="org.eclipse.tm.terminal.control.sdk.feature"
|
||||
label="%featureName"
|
||||
version="4.3.0.qualifier"
|
||||
version="4.4.0.qualifier"
|
||||
provider-name="%providerName"
|
||||
license-feature="org.eclipse.license"
|
||||
license-feature-version="1.0.1.qualifier">
|
||||
|
@ -32,7 +32,7 @@
|
|||
</license>
|
||||
|
||||
<url>
|
||||
<update label="%updateSiteName" url="http://download.eclipse.org/tm/terminal/updates/4.3"/>
|
||||
<update label="%updateSiteName" url="http://download.eclipse.org/tm/terminal/updates/4.4"/>
|
||||
</url>
|
||||
|
||||
<includes
|
||||
|
|
|
@ -1,36 +1,36 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
|
||||
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
|
||||
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.eclipse.tm.terminal</groupId>
|
||||
<artifactId>org.eclipse.tm.terminal.maven-build</artifactId>
|
||||
<version>4.4.0-SNAPSHOT</version>
|
||||
<relativePath>../../admin/pom-build.xml</relativePath>
|
||||
</parent>
|
||||
<parent>
|
||||
<groupId>org.eclipse.tm.terminal</groupId>
|
||||
<artifactId>org.eclipse.tm.terminal.maven-build</artifactId>
|
||||
<version>4.4.0-SNAPSHOT</version>
|
||||
<relativePath>../../admin/pom-build.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<version>4.3.0-SNAPSHOT</version>
|
||||
<artifactId>org.eclipse.tm.terminal.control.sdk.feature</artifactId>
|
||||
<packaging>eclipse-feature</packaging>
|
||||
<version>4.4.0-SNAPSHOT</version>
|
||||
<artifactId>org.eclipse.tm.terminal.control.sdk.feature</artifactId>
|
||||
<packaging>eclipse-feature</packaging>
|
||||
|
||||
<properties>
|
||||
<jacoco.skip>true</jacoco.skip>
|
||||
</properties>
|
||||
<properties>
|
||||
<jacoco.skip>true</jacoco.skip>
|
||||
</properties>
|
||||
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.eclipse.tycho</groupId>
|
||||
<artifactId>tycho-packaging-plugin</artifactId>
|
||||
<version>${tycho-version}</version>
|
||||
<configuration>
|
||||
<timestampProvider>default</timestampProvider>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.eclipse.tycho</groupId>
|
||||
<artifactId>tycho-packaging-plugin</artifactId>
|
||||
<version>${tycho-version}</version>
|
||||
<configuration>
|
||||
<timestampProvider>default</timestampProvider>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
</project>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
##################################################################################
|
||||
# Copyright (c) 2015, 2017 Wind River Systems, Inc. and others. All rights reserved.
|
||||
# Copyright (c) 2015, 2018 Wind River Systems, Inc. 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
|
||||
|
@ -20,7 +20,7 @@ featureName=TM Terminal
|
|||
providerName=Eclipse.org - Target Management
|
||||
|
||||
# "updateSiteName" property - label for the update site
|
||||
updateSiteName=TM Terminal 4.3 Updates
|
||||
updateSiteName=TM Terminal 4.4 Updates
|
||||
|
||||
# "description" property - description of the feature
|
||||
description=An integrated Eclipse View for the local command prompt (console) or \
|
||||
|
@ -29,7 +29,7 @@ description=An integrated Eclipse View for the local command prompt (console) or
|
|||
|
||||
# "copyright" property - text of the "Feature Update Copyright"
|
||||
copyright=\
|
||||
Copyright (c) 2011 - 2016 Wind River Systems, Inc. and others.\n\
|
||||
Copyright (c) 2011 - 2018 Wind River Systems, Inc. and others.\n\
|
||||
All rights reserved. This program and the accompanying materials\n\
|
||||
are made available under the terms of the Eclipse Public License v1.0\n\
|
||||
which accompanies this distribution, and is available at\n\
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<feature
|
||||
id="org.eclipse.tm.terminal.feature"
|
||||
label="%featureName"
|
||||
version="4.3.0.qualifier"
|
||||
version="4.4.0.qualifier"
|
||||
provider-name="%providerName"
|
||||
plugin="org.eclipse.tm.terminal.view.core"
|
||||
license-feature="org.eclipse.license"
|
||||
|
@ -21,14 +21,14 @@
|
|||
</license>
|
||||
|
||||
<url>
|
||||
<update label="%updateSiteName" url="http://download.eclipse.org/tm/terminal/updates/4.3"/>
|
||||
<update label="%updateSiteName" url="http://download.eclipse.org/tm/terminal/updates/4.4"/>
|
||||
</url>
|
||||
|
||||
<requires>
|
||||
<import feature="org.eclipse.tm.terminal.connector.local.feature" version="4.3.0" match="greaterOrEqual"/>
|
||||
<import feature="org.eclipse.tm.terminal.connector.ssh.feature" version="4.3.0" match="greaterOrEqual"/>
|
||||
<import feature="org.eclipse.tm.terminal.connector.telnet.feature" version="4.3.0" match="greaterOrEqual"/>
|
||||
<import feature="org.eclipse.tm.terminal.control.feature" version="4.3.0" match="greaterOrEqual"/>
|
||||
<import feature="org.eclipse.tm.terminal.control.feature" version="4.4.0" match="greaterOrEqual"/>
|
||||
<import feature="org.eclipse.tm.terminal.view.feature" version="4.3.0" match="greaterOrEqual"/>
|
||||
</requires>
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
<relativePath>../../admin/pom-build.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<version>4.3.0-SNAPSHOT</version>
|
||||
<version>4.4.0-SNAPSHOT</version>
|
||||
<artifactId>org.eclipse.tm.terminal.feature</artifactId>
|
||||
<packaging>eclipse-feature</packaging>
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
##################################################################################
|
||||
# Copyright (c) 2015, 2017 Wind River Systems, Inc. and others. All rights reserved.
|
||||
# Copyright (c) 2015, 2018 Wind River Systems, Inc. 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
|
||||
|
@ -20,7 +20,7 @@ featureName=TM Terminal, SDK
|
|||
providerName=Eclipse.org - Target Management
|
||||
|
||||
# "updateSiteName" property - label for the update site
|
||||
updateSiteName=TM Terminal 4.3 Updates
|
||||
updateSiteName=TM Terminal 4.4 Updates
|
||||
|
||||
# "description" property - description of the feature
|
||||
description=An integrated Eclipse View for the local command prompt (console) or \
|
||||
|
@ -29,7 +29,7 @@ description=An integrated Eclipse View for the local command prompt (console) or
|
|||
|
||||
# "copyright" property - text of the "Feature Update Copyright"
|
||||
copyright=\
|
||||
Copyright (c) 2011 - 2016 Wind River Systems, Inc. and others.\n\
|
||||
Copyright (c) 2011 - 2018 Wind River Systems, Inc. and others.\n\
|
||||
All rights reserved. This program and the accompanying materials\n\
|
||||
are made available under the terms of the Eclipse Public License v1.0\n\
|
||||
which accompanies this distribution, and is available at\n\
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<feature
|
||||
id="org.eclipse.tm.terminal.sdk.feature"
|
||||
label="%featureName"
|
||||
version="4.3.0.qualifier"
|
||||
version="4.4.0.qualifier"
|
||||
provider-name="%providerName"
|
||||
license-feature="org.eclipse.license"
|
||||
license-feature-version="1.0.1.qualifier">
|
||||
|
@ -20,7 +20,7 @@
|
|||
</license>
|
||||
|
||||
<url>
|
||||
<update label="%updateSiteName" url="http://download.eclipse.org/tm/terminal/updates/4.3"/>
|
||||
<update label="%updateSiteName" url="http://download.eclipse.org/tm/terminal/updates/4.4"/>
|
||||
</url>
|
||||
|
||||
<includes
|
||||
|
@ -31,7 +31,7 @@
|
|||
<import feature="org.eclipse.tm.terminal.connector.local.sdk.feature" version="4.3.0" match="greaterOrEqual"/>
|
||||
<import feature="org.eclipse.tm.terminal.connector.ssh.sdk.feature" version="4.3.0" match="greaterOrEqual"/>
|
||||
<import feature="org.eclipse.tm.terminal.connector.telnet.sdk.feature" version="4.3.0" match="greaterOrEqual"/>
|
||||
<import feature="org.eclipse.tm.terminal.control.sdk.feature" version="4.3.0" match="greaterOrEqual"/>
|
||||
<import feature="org.eclipse.tm.terminal.control.sdk.feature" version="4.4.0" match="greaterOrEqual"/>
|
||||
<import feature="org.eclipse.tm.terminal.view.sdk.feature" version="4.3.0" match="greaterOrEqual"/>
|
||||
</requires>
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
<relativePath>../../admin/pom-build.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<version>4.3.0-SNAPSHOT</version>
|
||||
<version>4.4.0-SNAPSHOT</version>
|
||||
<artifactId>org.eclipse.tm.terminal.sdk.feature</artifactId>
|
||||
<packaging>eclipse-feature</packaging>
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
|||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.tm.terminal.control; singleton:=true
|
||||
Bundle-Version: 4.3.0.qualifier
|
||||
Bundle-Version: 4.4.0.qualifier
|
||||
Bundle-Activator: org.eclipse.tm.internal.terminal.control.impl.TerminalPlugin
|
||||
Bundle-Vendor: %providerName
|
||||
Bundle-Localization: plugin
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
################################################################################
|
||||
# Copyright (c) 2006, 2017 Wind River Systems, Inc. and others.
|
||||
# Copyright (c) 2006, 2018 Wind River Systems, Inc. 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
|
||||
|
@ -20,5 +20,5 @@ blurb=Target Management Terminal Widget\n\
|
|||
\n\
|
||||
Version: {featureVersion}\n\
|
||||
\n\
|
||||
(c) Copyright Wind River Systems, Inc. and others 2003, 2017. All rights reserved.\n\
|
||||
(c) Copyright Wind River Systems, Inc. and others 2003, 2018. All rights reserved.\n\
|
||||
Visit http://www.eclipse.org/tm
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
<relativePath>../../admin/pom-build.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<version>4.3.0-SNAPSHOT</version>
|
||||
<version>4.4.0-SNAPSHOT</version>
|
||||
<artifactId>org.eclipse.tm.terminal.control</artifactId>
|
||||
<packaging>eclipse-plugin</packaging>
|
||||
</project>
|
||||
|
|
|
@ -89,7 +89,7 @@ public interface ITextCanvasModel {
|
|||
*
|
||||
* <p>The method is primarily designed for test automation.
|
||||
*
|
||||
* @since 4.3
|
||||
* @since 4.4
|
||||
*/
|
||||
String getAllText();
|
||||
}
|
|
@ -392,7 +392,7 @@ public class TextCanvas extends GridCanvas {
|
|||
* Console reacts in a GDB session) and this method allows to read the
|
||||
* text present in the terminal.
|
||||
*
|
||||
* @since 4.3
|
||||
* @since 4.4
|
||||
*/
|
||||
public String getAllText() {
|
||||
return fCellCanvasModel.getAllText();
|
||||
|
|
|
@ -11,53 +11,53 @@
|
|||
<relativePath>../../admin/pom-build.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<version>4.3.0-SNAPSHOT</version>
|
||||
<artifactId>org.eclipse.tm.terminal.repo</artifactId>
|
||||
<packaging>eclipse-repository</packaging>
|
||||
<version>4.4.0-SNAPSHOT</version>
|
||||
<artifactId>org.eclipse.tm.terminal.repo</artifactId>
|
||||
<packaging>eclipse-repository</packaging>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>deploy</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-antrun-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>deploy</id>
|
||||
<phase>install</phase>
|
||||
<goals>
|
||||
<goal>run</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<target>
|
||||
<delete includeemptydirs="true">
|
||||
<fileset dir="${terminal-install}">
|
||||
<include name="**"/>
|
||||
</fileset>
|
||||
</delete>
|
||||
<mkdir dir="${terminal-install}/common"/>
|
||||
<mkdir dir="${terminal-install}/remote"/>
|
||||
<copy includeemptydirs="false" todir="${terminal-install}">
|
||||
<fileset dir="target/repository">
|
||||
<include name="**"/>
|
||||
</fileset>
|
||||
<fileset dir="target">
|
||||
<include name="${terminal-zipfile}"/>
|
||||
</fileset>
|
||||
</copy>
|
||||
<chmod perm="g+w">
|
||||
<fileset dir="${terminal-install}">
|
||||
<include name="**"/>
|
||||
</fileset>
|
||||
</chmod>
|
||||
</target>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>deploy</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-antrun-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>deploy</id>
|
||||
<phase>install</phase>
|
||||
<goals>
|
||||
<goal>run</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<target>
|
||||
<delete includeemptydirs="true">
|
||||
<fileset dir="${terminal-install}">
|
||||
<include name="**" />
|
||||
</fileset>
|
||||
</delete>
|
||||
<mkdir dir="${terminal-install}/common" />
|
||||
<mkdir dir="${terminal-install}/remote" />
|
||||
<copy includeemptydirs="false" todir="${terminal-install}">
|
||||
<fileset dir="target/repository">
|
||||
<include name="**" />
|
||||
</fileset>
|
||||
<fileset dir="target">
|
||||
<include name="${terminal-zipfile}" />
|
||||
</fileset>
|
||||
</copy>
|
||||
<chmod perm="g+w">
|
||||
<fileset dir="${terminal-install}">
|
||||
<include name="**" />
|
||||
</fileset>
|
||||
</chmod>
|
||||
</target>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
</project>
|
||||
|
|
Loading…
Add table
Reference in a new issue