forked from microsoft/copilot-for-eclipse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
56 lines (56 loc) · 1.97 KB
/
Copy pathpom.xml
File metadata and controls
56 lines (56 loc) · 1.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.microsoft.copilot.eclipse</groupId>
<artifactId>github-copilot-for-eclipse</artifactId>
<version>${copilot-plugin-version}</version>
</parent>
<artifactId>com.microsoft.copilot.eclipse.ui</artifactId>
<packaging>eclipse-plugin</packaging>
<name>${base.name} :: UI</name>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>target-platform-configuration</artifactId>
<version>${tycho-version}</version>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-maven-plugin</artifactId>
<version>${tycho-version}</version>
<extensions>true</extensions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>copy-terminal-jars</id>
<phase>process-resources</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<copy file="../com.microsoft.copilot.eclipse.ui.terminal/target/com.microsoft.copilot.eclipse.ui.terminal-${project.version}.jar"
tofile="terminal-bundles/com.microsoft.copilot.eclipse.ui.terminal.jar"
failonerror="false"/>
<copy file="../com.microsoft.copilot.eclipse.ui.terminal.tm/target/com.microsoft.copilot.eclipse.ui.terminal.tm-${project.version}.jar"
tofile="terminal-bundles/com.microsoft.copilot.eclipse.ui.terminal.tm.jar"
failonerror="false"/>
</target>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-packaging-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>