Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 095ca38f0cce2483286dc712dad492e04093a240 (plain) (blame)
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
<?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>

	<parent>
		<groupId>org.eclipse.cdt</groupId>
		<artifactId>org.eclipse.cdt.debug-parent</artifactId>
		<version>10.2.0-SNAPSHOT</version>
	</parent>

	<version>1.2.200-SNAPSHOT</version>
	<artifactId>org.eclipse.cdt.debug.application</artifactId>
	<packaging>eclipse-plugin</packaging>

      <build>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-antrun-plugin</artifactId>
            <executions>
              <execution>
                <id>generate-configuration</id>
                <phase>prepare-package</phase>
                <configuration>
                  <target>
                    <property name="product_path" value="${project.basedir}/../org.eclipse.cdt.debug.application.product/debug.product"/>
                    <property name="config_path" value="${project.basedir}/scripts/config.ini"/>
                    <ant antfile="configGenerator.xml" target="generate.configuration"/>
                  </target>
                </configuration>
                <goals>
                  <goal>run</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
</project>

Back to the top